/* ** -*- C -*- ** ** cos.h ** Made by Bruno JOFRET ** ** Started on Tue Dec 5 15:49:18 2006 jofret ** Last update Mon Mar 19 15:07:50 2007 jofret ** ** Copyright INRIA 2006 */ #include "floatComplex.h" #include "doubleComplex.h" /* ** Compute Cosine for different types . */ /* ** \brief Float Cosine function ** \param in : input value. */ float scoss(float in); /* ** \brief Double Cosine function ** \param in : input value. */ double dcoss(double in); /* ** \brief Float Complex Cosine function ** \param in : input value. */ floatComplex ccoss(floatComplex in); /* ** \brief Double Complex Cosine function ** \param in : input value. */ doubleComplex zcoss(doubleComplex in); /* ** \brief Float Matrix Cosine function ** \param in : input array value. ** \param out : output array value. ** \param size : the size of in and out arrays. */ void scosa(float* in, float* out, int size); /* ** \brief Double Matrix Cosine function ** \param in : input array value. ** \param out : output array value. ** \param size : the size of in and out arrays. */ void dcosa(double* in, double* out, int size); /* ** \brief Float Complex Matrix Cosine function ** \param in : input array value. ** \param out : output array value. ** \param size : the size of in and out arrays. */ void ccosa(floatComplex* in, floatComplex* out, int size); /* ** \brief Double Complex Matrix Cosine function ** \param in : input array value. ** \param out : output array value. ** \param size : the size of in and out arrays. */ void zcosa(doubleComplex* in, doubleComplex* out, int size);