help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

functions not overwritten ?


From: Gerd Bürger
Subject: functions not overwritten ?
Date: Wed, 14 Dec 2005 09:23:34 +0100
User-agent: Mozilla Thunderbird 1.0.7 (X11/20050923)

Hi,

I have the impression that since 2.9.4 function defintions are not over-writable (see example below). Is that change on purpose?

Regards,

        Gerd

------------
octave:1> function y = foo(x)
> y = 2*x;
> endfunction
octave:2> type foo
foo is a user-defined function:

function y = foo (x)
  y = 2 * x;
endfunction

octave:3> function y = foo(x)
> y = 3*x;
> endfunction
octave:4> type foo
foo is a user-defined function:

function y = foo (x)
  y = 2 * x;
endfunction
------------



-------------------------------------------------------------
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
-------------------------------------------------------------



reply via email to

[Prev in Thread] Current Thread [Next in Thread]