diff options
author | Brijeshcr | 2017-07-06 15:48:47 +0530 |
---|---|---|
committer | GitHub | 2017-07-06 15:48:47 +0530 |
commit | c600ebcb67961fe6007ba41fd5ad987da3af7f6e (patch) | |
tree | 26fc9679644561759e8a2c4080059d30b70a3105 /2.3-1/src/c/linearAlgebra/hess/dhessa.c | |
parent | a7eeecce4c7c39ea52a2d434815c574a2c42730d (diff) | |
download | Scilab2C-c600ebcb67961fe6007ba41fd5ad987da3af7f6e.tar.gz Scilab2C-c600ebcb67961fe6007ba41fd5ad987da3af7f6e.tar.bz2 Scilab2C-c600ebcb67961fe6007ba41fd5ad987da3af7f6e.zip |
Revert "LinearAlgebra Function Added"
Diffstat (limited to '2.3-1/src/c/linearAlgebra/hess/dhessa.c')
-rw-r--r-- | 2.3-1/src/c/linearAlgebra/hess/dhessa.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/2.3-1/src/c/linearAlgebra/hess/dhessa.c b/2.3-1/src/c/linearAlgebra/hess/dhessa.c index e1f2e2d1..57f81b35 100644 --- a/2.3-1/src/c/linearAlgebra/hess/dhessa.c +++ b/2.3-1/src/c/linearAlgebra/hess/dhessa.c @@ -20,13 +20,11 @@ #include "matrixTranspose.h" #include "matrixMultiplication.h" -/* Lapack subroutines - which are used*/ extern int dgehrd_(int *, int *,int *,double *,int *,double *,double *,int *,int *); extern int dorghr_(int *, int *,int *,double *,int *,double *,double *,int *,int *); -/* All the vairbale names are given exactly the same name as scilab source code */ + void dhessa(double *in1,int size,int nout,double *out1, double *out2){ -/* Variables names are done through, Lapack library. */ int i,j,k; int N = size; int ILO=1; @@ -43,11 +41,11 @@ void dhessa(double *in1,int size,int nout,double *out1, double *out2){ WORK = (double *)malloc((double)LWORK*sizeof(double)); dgehrd_(&N,&ILO,&IHI,A,&LDA,TAU,WORK,&N,&INFO); - for(i=0;i<N;i++) /* copying it in output */ + for(i=0;i<N;i++) for(j=0;j<N;j++) out2[i+j*N] = A[i+j*N]; - for(j=1;j<=N-2;j++){ /* copying it in output */ + for(j=1;j<=N-2;j++){ for(i=j+2;i<=N;i++){ out2[(i-1)+(j-1)*N] = 0; } |