summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scilab2c/README38
-rw-r--r--scilab2c/TODO14
2 files changed, 49 insertions, 3 deletions
diff --git a/scilab2c/README b/scilab2c/README
index 19eb54f4..f6b7635f 100644
--- a/scilab2c/README
+++ b/scilab2c/README
@@ -104,7 +104,41 @@ precision :
Return a Real value if x E ] 0 ; +inf [
Return a Complex value if x E ] -inf ; 0 [
-
-
+- spec(A) : Real input.
+ Return a Real value if A symmetric and for some other cases (to complete)
+ Return a Complex value otherelse
+
+- spec2(A) : Real input.
+ Return Reals value if A symmetric and for some other cases (to complete)
+ Return Complexes value otherelse
+
+- logm(A) : Real input.
+ Return either a Real value or a Complex value : don't know the conditions to have one
+
+- 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
The diagonal must be real;
+
+
+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
+-comparaison operators : LogEq, LogNe, LogGt, LogGe, LogLt, LogLe
+-pow
+
+
+
+Following fuctions must have a square matrix on input
+-logm
+-powm
+-determ
+-chol
+-trace
+-lpc2cep (because using logm)
+-spec
+-spec2
+-inv
+
+
+
diff --git a/scilab2c/TODO b/scilab2c/TODO
index 92ef89c6..e3a2abaf 100644
--- a/scilab2c/TODO
+++ b/scilab2c/TODO
@@ -26,4 +26,16 @@ BJ - Enlarge tests.
BJ - Released functions :
+ acos : [done R and C]
- + acosh : [done R and C] \ No newline at end of file
+ + acosh : [done R and C]
+
+AT - Convol with 3 input arguments
+
+AT - FFT and IFFT with 3 input arguments
+
+AT - Functions max and min might not have all prototypes they could have in the INIT file.
+
+AT - FFT and IFFT : need to change Output type
+
+AT - Scilab2CDeps.sci : data have changed and file hasn't been updated. To Update.
+
+