mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-20 23:21:01 +00:00
42761f90b7
* Start extracting CashFlow functions from Financial, beginning with the simple Single Rate flows * Extracting Variable Periodic and NonPeriodic CashFlow functions from Financial * Some more unit tests for exception cases
41 lines
570 B
PHP
41 lines
570 B
PHP
<?php
|
|
|
|
return [
|
|
[
|
|
0.04137974399241062,
|
|
[10, 10000, 15000],
|
|
],
|
|
[
|
|
0.00099330737629133,
|
|
[96, 10000, 11000],
|
|
],
|
|
[
|
|
0.6747967875721199,
|
|
[10, 70, 12154],
|
|
],
|
|
[
|
|
'#VALUE!',
|
|
['NaN', 70, 12154],
|
|
],
|
|
[
|
|
'#VALUE!',
|
|
[10, 'NaN', 12154],
|
|
],
|
|
[
|
|
'#VALUE!',
|
|
[10, 70, 'NaN'],
|
|
],
|
|
[
|
|
'#NUM!',
|
|
[0.0, 70.0, 200.0],
|
|
],
|
|
[
|
|
'#NUM!',
|
|
[10, 0.0, 200.0],
|
|
],
|
|
[
|
|
'#NUM!',
|
|
[10, 70, -2.0],
|
|
],
|
|
];
|