blob: 3cb6bf85c0df106badf9b6852beeb8a7426aad42 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
/*
** -*- C -*-
**
** abs.h
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Thu Feb 8 10:12:17 2007 jofret
** Last update Mon Apr 23 17:10:57 2007 jofret
**
** Copyright INRIA 2007
*/
#ifndef __ABS_H__
#define __ABS_H__
#include "floatComplex.h"
#include "doubleComplex.h"
#include "sqrt.h"
/**
** \brief Float Absolute Value function
** Determine the absolute value of in.
** \param in : the float we must determine abs.
** \return -in or in depending on the sign of in.
**/
float sabss(float in);
/**
** \brief Double Absolute Value function
** Determine the absolute value of in.
** \param in : the double we must determine abs.
** \return -in or +in depending on the abs of in.
**/
double dabss(double in);
/**
** \brief Float Complex Absolute Value function
** Determine the absolute value of in.
** \param in : the float complex we must determine abs i.e. module.
** \return -in or in depending on the sign of in.
**/
float cabss(floatComplex in);
/**
** \brief Double Absolute Value function
** Determine the absolute value of in.
** \param in : the double we must determine abs i.e. module.
** \return -in or +in depending on the abs of in.
**/
double zabss(doubleComplex in);
#endif /* !__ABS_H__ */
|