/* ** -*- C -*- ** ** zsina.c ** Made by Bruno JOFRET ** ** Started on Fri Dec 8 14:02:04 2006 jofret ** Last update Fri Dec 8 14:04:27 2006 jofret ** ** Copyright INRIA 2006 */ #ifndef STDC99 #include "doubleComplex.h" #else #include typedef double complex doubleComplex; #endif doubleComplex zsins(doubleComplex); void zsina(doubleComplex* x, int strideX, doubleComplex* y, int strideY, int size) { int i = 0; for (i = 0; i < size; ++i) { y[i] = zsins(x[i]); } }