summaryrefslogtreecommitdiff
path: root/src/signalProcessing/includes
diff options
context:
space:
mode:
authortorset2008-12-09 10:42:22 +0000
committertorset2008-12-09 10:42:22 +0000
commit4e64caa2b8ed6a72e0bc3a0e3ef3ff25e941228a (patch)
treef9f70b05fe0961fdbfedd105e73ef56ff24958f0 /src/signalProcessing/includes
parentd4c92e80597b3e091a7abad2942abef4147ffdea (diff)
downloadscilab2c-4e64caa2b8ed6a72e0bc3a0e3ef3ff25e941228a.tar.gz
scilab2c-4e64caa2b8ed6a72e0bc3a0e3ef3ff25e941228a.tar.bz2
scilab2c-4e64caa2b8ed6a72e0bc3a0e3ef3ff25e941228a.zip
Add conv2d.h
Diffstat (limited to 'src/signalProcessing/includes')
-rw-r--r--src/signalProcessing/includes/conv2d.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/signalProcessing/includes/conv2d.h b/src/signalProcessing/includes/conv2d.h
new file mode 100644
index 00000000..e4eac021
--- /dev/null
+++ b/src/signalProcessing/includes/conv2d.h
@@ -0,0 +1,27 @@
+/*
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) 2008 - INRIA - Arnaud TORSET
+ *
+ * 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 __CONV2D_H__
+#define __CONV2D_H__
+
+#include "floatComplex.h"
+#include "doubleComplex.h"
+
+void sconv2da(float *in1, int lines1, int columns1, float *in2, int lines2, int columns2, float *out);
+
+void dconv2da(double *in1, int lines1, int columns1, double *in2, int lines2, int columns2, double *out);
+
+void cconv2da(floatComplex *in1, int lines1, int columns1, floatComplex *in2, int lines2, int columns2, floatComplex *out);
+
+void zconv2da(doubleComplex *in1, int lines1, int columns1, doubleComplex *in2, int lines2, int columns2, doubleComplex *out);
+
+#endif /* !__CONV2D_H__ */