GRASS 8 Programmer's Manual
8.6.0dev(2026)-56a9afeb9f
Loading...
Searching...
No Matches
xcos.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
cos(x)
9
10
if floating point exception occurs during the evaluation of cos(x)
11
the result is NULL
12
13
note: x is in degrees.
14
**********************************************************************/
15
16
#define DEGREES_TO_RADIANS (M_PI / 180.0)
17
18
int
f_cos
(
int
argc
,
const
int
*
argt
,
void
**args)
19
{
20
DCELL
*res = args[0];
21
DCELL
*
arg1
= args[1];
22
int
i;
23
24
if
(
argc
< 1)
25
return
E_ARG_LO
;
26
if
(
argc
> 1)
27
return
E_ARG_HI
;
28
29
if
(
argt
[0] !=
DCELL_TYPE
)
30
return
E_RES_TYPE
;
31
32
if
(
argt
[1] !=
DCELL_TYPE
)
33
return
E_ARG_TYPE
;
34
35
for
(i = 0; i <
columns
; i++)
36
if
(
IS_NULL_D
(&
arg1
[i]))
37
SET_NULL_D
(&res[i]);
38
else
{
39
floating_point_exception
= 0;
40
res[i] =
cos
(
arg1
[i] *
DEGREES_TO_RADIANS
);
41
if
(
floating_point_exception
)
42
SET_NULL_D
(&res[i]);
43
}
44
45
return
0;
46
}
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
AMI_STREAM
Definition
ami_stream.h:153
f_cos
func_t f_cos
gis.h
DCELL
double DCELL
Definition
gis.h:635
raster.h
DCELL_TYPE
#define DCELL_TYPE
Definition
raster.h:13
DEGREES_TO_RADIANS
#define DEGREES_TO_RADIANS
Definition
xcos.c:16
lib
calc
xcos.c
Generated on Sat Apr 4 2026 17:44:22 for GRASS 8 Programmer's Manual by
1.9.8