diff options
author | torset | 2009-02-27 15:20:41 +0000 |
---|---|---|
committer | torset | 2009-02-27 15:20:41 +0000 |
commit | c4328a4deff5a6ca217347dfa68bfd2d1db60a5e (patch) | |
tree | ca204834e6bbbb5434ef34afd3d2d05af38321c5 /README | |
parent | 6e20cb35a42aebc56364cbdb1478c0410b1128f6 (diff) | |
download | scilab2c-c4328a4deff5a6ca217347dfa68bfd2d1db60a5e.tar.gz scilab2c-c4328a4deff5a6ca217347dfa68bfd2d1db60a5e.tar.bz2 scilab2c-c4328a4deff5a6ca217347dfa68bfd2d1db60a5e.zip |
Update
Diffstat (limited to 'README')
-rw-r--r-- | README | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -118,9 +118,12 @@ precision : - powm(A) : Real input. Return either a Real value or a Complex value : don't know the conditions to have one - - chol(A) : Complex input +- chol(A) : Complex input The diagonal must be real; - + +-max(a,b) : Real input only + +-min(a,b) : Real input only Following fuctions must have their 2 input matrix with the same dimension(row1=row2 and column1=column2) -operation element by element : add, diff, rdiv, ldiv, mul @@ -141,4 +144,8 @@ Following fuctions must have a square matrix on input -inv +-Careful about the functions ceil, floor, fix/int, round with float precision. Exemple : +floor(1,999999)=2 instead of 1 in Scilab +floor(1.99999)=1 egal to Scilab result + |