ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
◀ ilDoc Overview
StandardDeviations.php
Go to the documentation of this file.
1
<?
php
2
3
namespace
PhpOffice\PhpSpreadsheet\Calculation\Statistical
;
4
5
class
StandardDeviations
6
{
20
public
static
function
STDEV
(...$args)
21
{
22
$result
=
Variances::VAR
(...$args);
23
if
(!is_numeric(
$result
)) {
24
return
$result
;
25
}
26
27
return
sqrt((
float
)
$result
);
28
}
29
42
public
static
function
STDEVA
(...$args)
43
{
44
$result
=
Variances::VARA
(...$args);
45
if
(!is_numeric(
$result
)) {
46
return
$result
;
47
}
48
49
return
sqrt((
float
)
$result
);
50
}
51
64
public
static
function
STDEVP
(...$args)
65
{
66
$result
=
Variances::VARP
(...$args);
67
if
(!is_numeric(
$result
)) {
68
return
$result
;
69
}
70
71
return
sqrt((
float
)
$result
);
72
}
73
86
public
static
function
STDEVPA
(...$args)
87
{
88
$result
=
Variances::VARPA
(...$args);
89
if
(!is_numeric(
$result
)) {
90
return
$result
;
91
}
92
93
return
sqrt((
float
)
$result
);
94
}
95
}
$result
$result
Definition:
CleanUpTest.php:463
PhpOffice\PhpSpreadsheet\Calculation\Statistical\StandardDeviations\STDEV
static STDEV(... $args)
STDEV.
Definition:
StandardDeviations.php:20
PhpOffice\PhpSpreadsheet\Calculation\Statistical\StandardDeviations\STDEVP
static STDEVP(... $args)
STDEVP.
Definition:
StandardDeviations.php:64
PhpOffice\PhpSpreadsheet\Calculation\Statistical\Variances\VARPA
static VARPA(... $args)
VARPA.
Definition:
Variances.php:152
PhpOffice\PhpSpreadsheet\Calculation\Statistical\StandardDeviations\STDEVA
static STDEVA(... $args)
STDEVA.
Definition:
StandardDeviations.php:42
PhpOffice\PhpSpreadsheet\Calculation\Statistical\Variances\VAR
static VAR(... $args)
VAR.
Definition:
Variances.php:21
PhpOffice\PhpSpreadsheet\Calculation\Statistical\StandardDeviations
Definition:
StandardDeviations.php:5
PhpOffice\PhpSpreadsheet\Calculation\Statistical\Variances\VARA
static VARA(... $args)
VARA.
Definition:
Variances.php:63
PhpOffice\PhpSpreadsheet\Calculation\Statistical
Definition:
AggregateBase.php:3
PhpOffice\PhpSpreadsheet\Calculation\Statistical\Variances\VARP
static VARP(... $args)
VARP.
Definition:
Variances.php:109
php
PhpOffice\PhpSpreadsheet\Calculation\Statistical\StandardDeviations\STDEVPA
static STDEVPA(... $args)
STDEVPA.
Definition:
StandardDeviations.php:86
libs
composer
vendor
phpoffice
phpspreadsheet
src
PhpSpreadsheet
Calculation
Statistical
StandardDeviations.php
Generated on Thu Jan 16 2025 19:01:46 for ILIAS by
1.8.13 (using
Doxyfile
)