Files
oleibman a884013d00 Fix Unintential Deprecated Calls in Tests - FINANCIAL (#3180)
* Fix Unintential Deprecated Calls in Tests - FINANCIAL

I think it's best to install these before PR #3166. There are no changes to source code, only to doc-blocks and to test members which continue to inadvertently use calls to deprecated functions.

* Change Tests to Run in Spreadsheet Context

Found and fixed some problems with how MIRR handles errors.
2022-11-25 07:19:19 -08:00

54 lines
909 B
PHP

<?php
// principal, schedule, Result
return [
[
1.3308899999999999,
1,
[
0.089999999999999997,
0.11,
0.10000000000000001,
],
],
[
13.3089,
10,
[
0.089999999999999997,
0.11,
0.10000000000000001,
],
],
[
12223.614571874999,
10000,
[
0.050000000000000003,
0.050000000000000003,
0.035000000000000003,
0.035000000000000003,
0.035000000000000003,
],
],
[
'#VALUE!',
'NaN',
[
0.089999999999999997,
0.11,
0.10000000000000001,
],
],
[
'#VALUE!',
100,
[
0.089999999999999997,
'NaN',
0.10000000000000001,
],
],
];