PhpSpreadsheet/tests/data/Calculation/Engineering/IMCONJUGATE.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

109 lines
1.2 KiB
PHP

<?php
return [
[
'12.34-5.67j',
'12.34+5.67j',
],
[
'3.5-2.5i',
'3.5+2.5i',
],
[
'3.5-i',
'3.5+i',
],
[
'3.5',
'3.5',
],
[
'3.5+i',
'3.5-i',
],
[
'3.5+2.5i',
'3.5-2.5i',
],
[
'1-2.5i',
'1+2.5i',
],
[
'1-i',
'1+i',
],
[
'1',
'1',
],
[
'1+i',
'1-i',
],
[
'1+2.5i',
'1-2.5i',
],
[
'-2.5i',
'2.5i',
],
[
'-i',
'i',
],
[
'0',
'0',
],
[
'i',
'-i',
],
[
'2.5i',
'-2.5i',
],
[
'-1-2.5i',
'-1+2.5i',
],
[
'-1-i',
'-1+i',
],
[
'-1',
'-1',
],
[
'-1+i',
'-1-i',
],
[
'-1+2.5i',
'-1-2.5i',
],
[
'-3.5-2.5i',
'-3.5+2.5i',
],
[
'-3.5-i',
'-3.5+i',
],
[
'-3.5',
'-3.5',
],
[
'-3.5+i',
'-3.5-i',
],
[
'-3.5+2.5i',
'-3.5-2.5i',
],
];