summaryrefslogtreecommitdiff
path: root/src/type/floatComplex.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/type/floatComplex.c')
-rw-r--r--src/type/floatComplex.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/type/floatComplex.c b/src/type/floatComplex.c
index 9b733693..3df10a13 100644
--- a/src/type/floatComplex.c
+++ b/src/type/floatComplex.c
@@ -136,15 +136,5 @@ bool cisimags(floatComplex z) {
}
-/*
-** \function ccopya
-** \brief copy a complex matrix in another one .
-*/
-void ccopya(floatComplex* in, int size, floatComplex* copy){
- int i;
- for (i=0;i<size;i++){
- copy[i]=in[i];
- }
-}