summaryrefslogtreecommitdiff
path: root/src/type/doubleComplex.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/type/doubleComplex.h')
-rw-r--r--src/type/doubleComplex.h22
1 files changed, 12 insertions, 10 deletions
diff --git a/src/type/doubleComplex.h b/src/type/doubleComplex.h
index e43c8bd0..a8934b50 100644
--- a/src/type/doubleComplex.h
+++ b/src/type/doubleComplex.h
@@ -1,14 +1,14 @@
/*
-** -*- C -*-
-**
-** doubleComplex.h
-** Made by Bruno JOFRET <bruno.jofret@inria.fr>
-**
-** Started on Thu Nov 30 16:50:08 2006 jofret
-** Last update Thu Aug 16 11:57:12 2007 bruno
-**
-** Copyright INRIA 2006
-*/
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET
+ *
+ * This file must be used under the terms of the CeCILL.
+ * This source file is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at
+ * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
+ *
+ */
#ifndef __DOUBLECOMPLEX_H__
#define __DOUBLECOMPLEX_H__
@@ -24,6 +24,7 @@
# endif
#endif
+#include <stdlib.h>
#include <stdbool.h>
#ifndef STDC99
@@ -57,6 +58,7 @@ typedef double complex doubleComplex;
double zreals(doubleComplex);
double zimags(doubleComplex);
doubleComplex DoubleComplex(double, double);
+doubleComplex* DoubleComplexMatrix(double*, double*, int);
bool zisreals(doubleComplex);
bool zisimags(doubleComplex);