octave-maintainers
[Top][All Lists]
Advanced

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

Re: goals for 3.1


From: Rolf Fabian
Subject: Re: goals for 3.1
Date: Tue, 13 Nov 2007 23:51:56 -0800 (PST)


John W. Eaton wrote:
> 
>   * fsolve compatibility
>       -- input/output args should be compatible
> 

What do you mean by 'compatible' ?


John W. Eaton wrote:
> 
> Comments or suggestions?
> 

  * linear algebra
     noninteger matrix powers fail for
     defective square matrix input
     without any warning.

     This wasn't changed since I came 
     across Octave ( around  V2.0.x ).

     Now for Version 3.x at least a warning
     should be displayed.

     In case you don't remember what I mean,
     try e.g.

:4> x=triu(ones(2))
x =
   1   1
   0   1

:5> x^2       # OK because of integer exponent
ans =
   1   2
   0   1

:6> x^2.5     # INCORRECT
ans =
   1   0
   0   1

:7>x^3         # OK because of integer exponent
ans =
   1   3
   0   1

:8>ans^(1/3)   # INCORRECT
ans =
   1   0
   0   1

Rolf Fabian
<r dot fabian at Jacobs-University dot de>
     
     

-----
Rolf Fabian
<r dot fabian at jacobs-university dot de>

-- 
View this message in context: 
http://www.nabble.com/goals-for-3.1-tf4800022.html#a13741704
Sent from the Octave - Maintainers mailing list archive at Nabble.com.



reply via email to

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