summaryrefslogtreecommitdiff
path: root/src/c/matrixOperations/expm/sexpma.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/c/matrixOperations/expm/sexpma.c')
-rw-r--r--src/c/matrixOperations/expm/sexpma.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/c/matrixOperations/expm/sexpma.c b/src/c/matrixOperations/expm/sexpma.c
index cd969981..b265a212 100644
--- a/src/c/matrixOperations/expm/sexpma.c
+++ b/src/c/matrixOperations/expm/sexpma.c
@@ -68,7 +68,7 @@ void sexpma (float* in, float* out, int _iLeadDim){
for ( iIndex1 = 0 ; iIndex1 < iSquare ; iIndex1++ )
pfltMatrixX[iIndex1] = pfltMatrixA[iIndex1] ;
- seyea(pfltMatrixEye, _iLeadDim, _iLeadDim);
+ seyea(pfltMatrixEye, _iLeadDim, _iLeadDim);
/*cA = A * c*/
@@ -110,7 +110,7 @@ void sexpma (float* in, float* out, int _iLeadDim){
pfltMatrixcX[iIndex1] = pfltMatrixX[iIndex1] * (float) dblCst ;
/*E = E + cX*/
- sadda ( out, iSquare , pfltMatrixcX , iSquare , out ) ;
+ sadda ( out, iSquare , pfltMatrixcX , iSquare , out ) ;
if(iFlag == 1) /*D = D + cX*/
{