PhpSpreadsheet/tests/data/Calculation/MathTrig/SQRTPI.php

65 lines
757 B
PHP
Raw Normal View History

<?php
return [
[
'ABC',
'#VALUE!',
],
[
-1.5,
'#NUM!',
],
[
-1,
'#NUM!',
],
[
-0.5,
'#NUM!',
],
[
0,
0.0,
],
[
0.5,
1.2533141373154999,
],
[
1,
1.7724538509055201,
],
[
1.5,
2.1708037636748001,
],
[
2,
2.5066282746309998,
],
[
2.5,
2.80249560819896,
],
[
3,
3.0699801238394699,
],
[
3.5,
3.31595752197827,
],
[
4,
3.54490770181103,
],
[
4.5,
3.7599424119465001,
],
[
5,
3.9633272976060101,
],
];