Files
PhpSpreadsheet/tests/data/Calculation/Engineering/ERFC.php
T
2023-03-14 06:53:45 +01:00

48 lines
1.3 KiB
PHP

<?php
use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError;
// Result, x value
return [
[1.0, 0],
[0.98871658444415, 0.01],
[0.94362802220298303, 0.05],
[0.88753708398171505, 0.1],
[0.859683795198666, 0.125],
[0.832004028572636, 0.15],
[0.77729741078952197, 0.2],
[0.72367360983176299, 0.25],
[0.671373240540873, 0.3],
[0.62061794643768997, 0.35],
[0.57160764495333205, 0.4],
[0.524518280213076, 0.45],
[0.47950012218695298, 0.5],
[0.39614390915207398, 0.6],
[0.32219880616258201, 0.7],
[0.25789903529233899, 0.8],
[0.203091787577168, 0.9],
[0.15729920705028499, 1],
[0.119794930425918, 1.1],
[0.089686021770364596, 1.2],
[0.065992055059347507, 1.3],
[0.047714880237351202, 1.4],
[0.033894853524689302, 1.5],
[0.0133283287808176, 1.75],
[0.0046777349810473001, 2],
[0.00040695201744500001, 2.5],
[2.20904969986E-5, 3],
[7.4309837229999996E-7, 3.5],
[1.54172579E-8, 4],
[1.9661600000000001E-10, 4.5],
[1.5375000000000001E-12, 5],
[7.4000000000000003E-15, 5.5],
[0.0, 6],
[0.0, 32],
[1.1124629160182899, -0.1],
[1.8427007929497099, -1],
[ExcelError::VALUE(), true],
[ExcelError::VALUE(), false],
[0.0046777349810473001, '2'],
[ExcelError::VALUE(), 'TWO'],
];