[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: LOADPATH problem
From: |
Marvin Vis |
Subject: |
Re: LOADPATH problem |
Date: |
Fri, 17 Feb 95 08:51:25 MST |
>address@hidden writes:
> I wonder if anybody can solve this. I've got Octave working on an
>Alpha OSF/1 3.0. However. if I specify e.g. the line
>LOADPATH="~/mat:";
>on my .octaverc file, I seem to lose the path to the Octave .m files,
>in spite of the trailing colon. A leading colon gives the same result.
>Any ideas?
Use something like
LOADPATH = [LOADPATH ':~/mat'];
instead. This will keep the old LOADPATH (the one that searches for the
octave scripts) in your revised LOADPATH.
M.