GRASS GIS 8 Programmer's Manual
8.5.0dev(2025)-565e82de51
Main Page
Related Pages
Data Structures
Data Structures
Class Hierarchy
Data Fields
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
~
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Related Functions
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Variables
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
w
x
y
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
o
p
r
s
t
u
v
w
y
Enumerations
a
c
d
e
h
i
j
l
m
n
o
p
r
s
t
v
y
Enumerator
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
y
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
var.c
Go to the documentation of this file.
1
#include <math.h>
2
#include <
grass/imagery.h
>
3
/* sum: sum of x
4
* sum2: sum of x squared
5
* n: number of points
6
*/
7
8
double
I_variance
(
double
sum,
double
sum2,
int
n)
9
{
10
if
(n < 2)
11
return
((
double
)0.0);
12
else
13
return
((sum2 - sum * sum / n) / (n - 1));
14
}
15
16
double
I_stddev
(
double
sum,
double
sum2,
int
n)
17
{
18
if
(n < 2)
19
return
((
double
)-99.0);
20
else
21
return
sqrt(
I_variance
(sum, sum2, n));
22
}
imagery.h
I_stddev
double I_stddev(double sum, double sum2, int n)
Definition:
var.c:16
I_variance
double I_variance(double sum, double sum2, int n)
Definition:
var.c:8
lib
imagery
var.c
Generated on Thu Mar 20 2025 07:33:31 for GRASS GIS 8 Programmer's Manual by
1.9.1