PhpSpreadsheet/tests/data/Calculation/Financial/RRI.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],
],
];