diff options
author | Siddhu8990 | 2017-07-04 20:09:20 +0530 |
---|---|---|
committer | Siddhu8990 | 2017-07-04 20:09:20 +0530 |
commit | 9981dc71e9478fee921175d300d69fd5ba655dc5 (patch) | |
tree | eb3170cb039ee25a34fb4812d90672af8c16b213 /2.3-1/src/c/linearAlgebra/includes/svd.h | |
parent | 0de1d810a20afa0d8a76cecca8d651e7696a86b6 (diff) | |
parent | 87a33013355c6367ac01d88c3c945c3b2e8545f6 (diff) | |
download | Scilab2C-9981dc71e9478fee921175d300d69fd5ba655dc5.tar.gz Scilab2C-9981dc71e9478fee921175d300d69fd5ba655dc5.tar.bz2 Scilab2C-9981dc71e9478fee921175d300d69fd5ba655dc5.zip |
Merge branch 'ukashanoor-master'
Merged after removing bug for dct and idct
Diffstat (limited to '2.3-1/src/c/linearAlgebra/includes/svd.h')
-rw-r--r-- | 2.3-1/src/c/linearAlgebra/includes/svd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/2.3-1/src/c/linearAlgebra/includes/svd.h b/2.3-1/src/c/linearAlgebra/includes/svd.h index 260b87fb..dea681fc 100644 --- a/2.3-1/src/c/linearAlgebra/includes/svd.h +++ b/2.3-1/src/c/linearAlgebra/includes/svd.h @@ -18,7 +18,7 @@ extern "C" { #endif -void dsvda(double *in1,int row,int col,double in2,double nout,double *out1, \ +double dsvda(double tol,double *in1,int row,int col,double in2,double nout,double *out1, \ double *out2,double *out3); void zsvda(doubleComplex *in1,int row,int col,int in2,int nout, doubleComplex *out1,\ doubleComplex *out2,doubleComplex *out3); |