[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: overloading
From: |
Dirk Laurie |
Subject: |
Re: overloading |
Date: |
Mon, 30 Oct 2000 11:29:27 +0200 |
Paul Soderlind skryf:
> Hi!
>
> I occasionally want to use another ols.m than the one distributed with
> Octave. (I don't want to make a permanent change.) Is there an easy way to
> accomplish that ("overloading" as in MatLab or by changing the path)?
>
You've said it. In my þ/.octaverc I have:
LOADPATH=['.:/home/dirk/octave/lib//:' LOADPATH]
So Octave looks first in my current directory; then in my library
of Octave files (.m and .oct), including subdirectories there; and
only when nothing is found, it looks in the default standard path.
With this setup, a temporary change is effected by chdir'ing to
the directory where the replacement file sits, and working from
there. After calling it the first time, you can chdir to another
directory: Octave remembers its definition until you 'clear'.
A semi-permanent change is effected by putting the replacement
file in the /home/dirk/octave/lib// tree.
Dirk
-------------------------------------------------------------
Octave is freely available under the terms of the GNU GPL.
Octave's home on the web: http://www.octave.org
How to fund new projects: http://www.octave.org/funding.html
Subscription information: http://www.octave.org/archive.html
-------------------------------------------------------------
- overloading, Paul Soderlind, 2000/10/30
- Re: overloading,
Dirk Laurie <=