blob: 6c458c8ed10942ff27af4034806fc11f15104a44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
** -*- C -*-
**
** csina.c
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Fri Dec 8 13:07:37 2006 jofret
** Last update Wed Jan 31 11:13:10 2007 jofret
**
** Copyright INRIA 2006
*/
#include "floatComplex.h"
floatComplex csins(floatComplex);
void csina(floatComplex* x, int strideX, floatComplex* y, int strideY, int size) {
int i = 0;
for (i = 0; i < size; ++i) {
y[i] = csins(x[i]);
}
}
|