summaryrefslogtreecommitdiff
path: root/src/matrixOperations/chol/testFloatChol.c
diff options
context:
space:
mode:
authortorset2009-02-06 14:44:22 +0000
committertorset2009-02-06 14:44:22 +0000
commitf737d894588ca911f4316540c3c57b81c28a799c (patch)
tree4fd86a0fdff67d5125629424f27fd76285ea7c05 /src/matrixOperations/chol/testFloatChol.c
parentaa569c84c88bfcb86a4561e1a928ffc3276336a5 (diff)
downloadscilab2c-f737d894588ca911f4316540c3c57b81c28a799c.tar.gz
scilab2c-f737d894588ca911f4316540c3c57b81c28a799c.tar.bz2
scilab2c-f737d894588ca911f4316540c3c57b81c28a799c.zip
Modify without lapack part
Diffstat (limited to 'src/matrixOperations/chol/testFloatChol.c')
-rw-r--r--src/matrixOperations/chol/testFloatChol.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/matrixOperations/chol/testFloatChol.c b/src/matrixOperations/chol/testFloatChol.c
index eea75ea4..884d0478 100644
--- a/src/matrixOperations/chol/testFloatChol.c
+++ b/src/matrixOperations/chol/testFloatChol.c
@@ -44,11 +44,11 @@ static void scholaTest(void){
static void ccholsTest(void){
floatComplex in;
- float out;
+ floatComplex out;
in=FloatComplex(3,1);
- printf("\n >>> ZCholS <<<\n");
+ printf("\n >>> CCholS <<<\n");
out=cchols(in);
- printf("result : %f\n",out);
+ printf("result : %f\n",creals(out));
}