summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/log10/clog10a.c
blob: 2228c8696539b00dc8835552ebd4c1e8d6e55166 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
**  -*- C -*-
**
** clog10a.c
** Made by  Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on  Thu Sep  6 16:23:40 2007 bruno
** Last update Mon Oct 22 09:52:46 2007 bruno
**
** Copyright INRIA 2007
*/

#include "log10.h"

void		clog10a(floatComplex* in, int size, floatComplex* out) {
  int i = 0;
  for (i = 0 ; i < size ; ++i) {
    out[i] = clog10s(in[i]);
  }
}