summaryrefslogtreecommitdiff
path: root/src/matrixOperations/multiplication
diff options
context:
space:
mode:
authorsimon2008-08-07 15:00:45 +0000
committersimon2008-08-07 15:00:45 +0000
commit9633cfcb36ba18c46282c8e8a7e5dd7352212c40 (patch)
treee766cc4a2d03d979eeba92c0053afa60aa925943 /src/matrixOperations/multiplication
parentc80b732994ec39abd96da72e03fb95dfb6997422 (diff)
downloadscilab2c-9633cfcb36ba18c46282c8e8a7e5dd7352212c40.tar.gz
scilab2c-9633cfcb36ba18c46282c8e8a7e5dd7352212c40.tar.bz2
scilab2c-9633cfcb36ba18c46282c8e8a7e5dd7352212c40.zip
added matrixExponential and all related sub functions
matrixExponential just work with real Double for the moment
Diffstat (limited to 'src/matrixOperations/multiplication')
-rw-r--r--src/matrixOperations/multiplication/zmulma.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/matrixOperations/multiplication/zmulma.c b/src/matrixOperations/multiplication/zmulma.c
index 30147c75..d1552ca6 100644
--- a/src/matrixOperations/multiplication/zmulma.c
+++ b/src/matrixOperations/multiplication/zmulma.c
@@ -72,7 +72,7 @@ void zmulma(doubleComplex *in1, int lines1, int columns1,
{
out[i] = DoubleComplex(RealOut[i], ImagOut[i]);
}
- /* FREE allocated variables */
+ /* FREE allocated variguru_dim_structables */
free(in1Real);
free(in2Real);
free(in1Imag);
@@ -80,6 +80,7 @@ void zmulma(doubleComplex *in1, int lines1, int columns1,
free(RealOut);
free(ImagOut);
#else
+ */
/*
** DO NOT USE ANY BLAS FUNCTION.
*/