PhpSpreadsheet/tests/data/Calculation/Engineering/IMSUB.php
Adrien Crivelli 8dddf56c2e
Use proper syntax for variadic functions
This simplify code, increase readability and improve the function
signature for API users.
2017-01-23 15:01:20 +09:00

56 lines
882 B
PHP

<?php
return [
[
'#NUM!',
'12.34+5.67j',
'123.45+67.89i',
],
[
'111.11+62.22j',
'123.45+67.89j',
'12.34+5.67j',
],
[
'-111.11-62.22j',
'12.34+5.67j',
'123.45+67.89j',
],
[
'-111.11-62.22i',
'12.34+5.67i',
'123.45+67.89i',
'123.45+67.89i',
],
[
'-135.79+62.22i',
'-12.34-5.67i',
'123.45-67.89i',
],
[
'135.79+62.22i',
'12.34-5.67i',
'-123.45-67.89i',
],
[
'111.11+62.22i',
'-12.34-5.67i',
'-123.45-67.89i',
],
[
'#NUM!',
'-12.34-5.67i',
'-123.45-67.89',
],
[
'#NUM!',
'-12.34-5.67j',
'-123.45-67.89',
],
[
'#NUM!',
'-12.34-5.67',
'-123.45-67.89j',
],
];