blob: 5c4e17fd257ab872d33fae7402a84ef21c54724c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/*
** -*- C -*-
**
** ctans.c
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Thu Dec 7 12:04:28 2006 jofret
** Last update Sun Mar 25 12:23:06 2007 bruno
**
** Copyright INRIA 2006
*/
#include "tan.h"
/*
#include "log.h"
*/
#include "sqrt.h"
/*
#include "lapack.h"
*/
floatComplex ctans(floatComplex z) {
double out_real = 0;
double out_imag = 0;
/*
double L = 1 + dlogs(2 / dsqrts(dlamch('e', 1)));
*/
return FloatComplex(out_real, out_imag);
}
|