summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/asin/casina.c
blob: d10c5d9dd17555e4f88d9c0e95f2fda014b9b4e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
**  -*- C -*-
**
** casina.c
** Made by  Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on  Fri Jan  5 10:23:49 2007 jofret
** Last update Mon Oct 22 09:58:38 2007 bruno
**
** Copyright INRIA 2007
*/

#include "asin.h"

void casina(floatComplex* x, int size, floatComplex* y) {
  int i = 0;
  for (i = 0; i < size; ++i) {
    y[i] = casins(x[i]);
  }
}