ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
◀ ilDoc Overview
DVar.php
Go to the documentation of this file.
1
<?
php
2
3
namespace
PhpOffice\PhpSpreadsheet\Calculation\Database
;
4
5
use
PhpOffice\PhpSpreadsheet\Calculation\Statistical\Variances
;
6
7
class
DVar
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
Variances::VAR
(
43
self::getFilteredColumn($database, $field, $criteria)
44
);
45
}
46
}
Variances
PhpOffice\PhpSpreadsheet\Calculation\Database\DVar\evaluate
static evaluate($database, $field, $criteria)
DVAR.
Definition:
DVar.php:35
PhpOffice\PhpSpreadsheet\Calculation\Database
Definition:
DatabaseAbstract.php:3
PhpOffice\PhpSpreadsheet\Calculation\Database\DatabaseAbstract
Definition:
DatabaseAbstract.php:9
PhpOffice\PhpSpreadsheet\Calculation\Database\DVar
Definition:
DVar.php:7
PhpOffice\PhpSpreadsheet\Calculation\Statistical\Variances\VAR
static VAR(... $args)
VAR.
Definition:
Variances.php:21
php
libs
composer
vendor
phpoffice
phpspreadsheet
src
PhpSpreadsheet
Calculation
Database
DVar.php
Generated on Thu Jan 16 2025 19:01:45 for ILIAS by
1.8.13 (using
Doxyfile
)