Files
PhpSpreadsheet/tests/data/Calculation/Engineering/DELTA.php
Mark Baker c54e3e9979 Extract DELTA() and GESTEP() functions from the Engineering class into a dedicated Comparison classes (#1853)
* Extract DELTA() and GESTEP() functions from the Engineering class into a dedicated Comparison classes

Retain the original methods in the Engineering class as stubs for BC, but deprecate them. They will be removed for PHPSpreadsheet v2

Note that unit tests still point to the Engineering class stubs; these should be modified to use the Erf and ErfC classes directly when the stubs are removed
2021-02-13 20:52:20 +01:00

135 lines
1.3 KiB
PHP

<?php
return [
[
1,
-1.5,
-1.5,
],
[
0,
-0.75,
-1.5,
],
[
0,
0,
-1.5,
],
[
0,
0.75,
-1.5,
],
[
0,
1.5,
-1.5,
],
[
0,
-1.5,
-0.75,
],
[
1,
-0.75,
-0.75,
],
[
0,
0,
-0.75,
],
[
0,
0.75,
-0.75,
],
[
0,
1.5,
-0.75,
],
[
0,
-1.5,
0,
],
[
0,
-0.75,
0,
],
[
1,
0,
0,
],
[
0,
0.75,
0,
],
[
0,
1.5,
0,
],
[
0,
-1.5,
0.75,
],
[
0,
-0.75,
0.75,
],
[
0,
0,
0.75,
],
[
1,
0.75,
0.75,
],
[
0,
1.5,
0.75,
],
[
0,
-1.5,
1.5,
],
[
0,
-0.75,
1.5,
],
[
0,
0,
1.5,
],
[
0,
0.75,
1.5,
],
[
1,
1.5,
1.5,
],
[
'#VALUE!',
1,
true,
],
];