GRASS 8 Programmer's Manual
8.6.0dev(2026)-ddeab64dbf
Loading...
Searching...
No Matches
xexp.c
Go to the documentation of this file.
1
#include <math.h>
2
3
#include <
grass/gis.h
>
4
#include <
grass/raster.h
>
5
#include <
grass/calc.h
>
6
7
/**********************************************************************
8
exp(x) computes e raised to power x
9
exp(x,y) computes x raised to power y
10
11
if floating point exception occurs during the evaluation of exp(x)
12
or exp(x,y) the result is NULL
13
**********************************************************************/
14
15
int
f_exp
(
int
argc
,
const
int
*
argt
,
void
**args)
16
{
17
DCELL
*res = args[0];
18
DCELL
*
arg1
= args[1];
19
DCELL
*
arg2
;
20
int
i;
21
22
if
(
argc
< 1)
23
return
E_ARG_LO
;
24
if
(
argc
> 2)
25
return
E_ARG_HI
;
26
27
if
(
argt
[0] !=
DCELL_TYPE
)
28
return
E_RES_TYPE
;
29
30
if
(
argt
[1] !=
DCELL_TYPE
)
31
return
E_ARG_TYPE
;
32
33
arg2
= (
argc
> 1) ? args[2] :
NULL
;
34
35
for
(i = 0; i <
columns
; i++)
36
if
(
IS_NULL_D
(&
arg1
[i]))
37
SET_NULL_D
(&res[i]);
38
else
if
(
argc
> 1 &&
IS_NULL_D
(&
arg2
[i]))
39
SET_NULL_D
(&res[i]);
40
else
if
(
argc
> 1 &&
arg1
[i] < 0 &&
arg2
[i] !=
ceil
(
arg2
[i]))
41
SET_NULL_D
(&res[i]);
42
else
{
43
floating_point_exception
= 0;
44
res[i] = (
argc
> 1) ?
pow
(
arg1
[i],
arg2
[i]) :
exp
(
arg1
[i]);
45
if
(
floating_point_exception
)
46
SET_NULL_D
(&res[i]);
47
}
48
49
return
0;
50
}
calc.h
E_RES_TYPE
@ E_RES_TYPE
Definition
calc.h:14
E_ARG_TYPE
@ E_ARG_TYPE
Definition
calc.h:13
E_ARG_HI
@ E_ARG_HI
Definition
calc.h:12
E_ARG_LO
@ E_ARG_LO
Definition
calc.h:11
floating_point_exception
volatile int floating_point_exception
Definition
calc.c:8
SET_NULL_D
#define SET_NULL_D(x)
Definition
calc.h:32
columns
int columns
Definition
calc.c:11
IS_NULL_D
#define IS_NULL_D(x)
Definition
calc.h:28
NULL
#define NULL
Definition
ccmath.h:32
AMI_STREAM
Definition
ami_stream.h:153
f_exp
func_t f_exp
gis.h
DCELL
double DCELL
Definition
gis.h:635
raster.h
DCELL_TYPE
#define DCELL_TYPE
Definition
raster.h:13
lib
calc
xexp.c
Generated on Sun Apr 5 2026 06:59:54 for GRASS 8 Programmer's Manual by
1.9.8