Files
PhpSpreadsheet/tests/data/Calculation/Engineering/IMSUB.php
T
Mark Baker d5dc58d20e Extract information functions (#2605)
* Split Information functions into a dedicated class and namespace and categorise as Value or Error
* Refactor all error functions into the new ExcelError class
2022-02-19 13:53:17 +01:00

48 lines
818 B
PHP

<?php
use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError;
return [
[
ExcelError::NAN(),
'12.34+5.67j',
'123.45+67.89i',
],
[
ExcelError::NAN(),
'12.34+5.67j',
'Invalid Complex Number',
],
[
'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',
],
];