Files
PhpSpreadsheet/tests/data/Calculation/Financial/RRI.php
Mark Baker 42761f90b7 Financial start refactoring cash flow functions (#1986)
* 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
2021-04-04 14:44:06 +02:00

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],
],
];