ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
◀ ilDoc Overview
DStDev.php
Go to the documentation of this file.
1
<?
php
2
3
namespace
PhpOffice\PhpSpreadsheet\Calculation\Database
;
4
5
use
PhpOffice\PhpSpreadsheet\Calculation\Statistical\StandardDeviations
;
6
7
class
DStDev
extends
DatabaseAbstract
8
{
35
public
static
function
evaluate
($database, $field, $criteria)
36
{
37
$field = self::fieldExtract($database, $field);
38
if
($field === null) {
39
return
null;
40
}
41
42
return
StandardDeviations::STDEV
(
43
self::getFilteredColumn($database, $field, $criteria)
44
);
45
}
46
}
PhpOffice\PhpSpreadsheet\Calculation\Statistical\StandardDeviations\STDEV
static STDEV(... $args)
STDEV.
Definition:
StandardDeviations.php:20
PhpOffice\PhpSpreadsheet\Calculation\Database\DStDev
Definition:
DStDev.php:7
PhpOffice\PhpSpreadsheet\Calculation\Database
Definition:
DatabaseAbstract.php:3
PhpOffice\PhpSpreadsheet\Calculation\Database\DatabaseAbstract
Definition:
DatabaseAbstract.php:9
StandardDeviations
php
PhpOffice\PhpSpreadsheet\Calculation\Database\DStDev\evaluate
static evaluate($database, $field, $criteria)
DSTDEV.
Definition:
DStDev.php:35
libs
composer
vendor
phpoffice
phpspreadsheet
src
PhpSpreadsheet
Calculation
Database
DStDev.php
Generated on Thu Jan 30 2025 19:01:22 for ILIAS by
1.8.13 (using
Doxyfile
)