mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-22 10:14:09 +00:00
14 lines
278 B
PHP
14 lines
278 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
[0.0390835557068, 4, 3.5, 1.2],
|
|
[0.066417114799, 12, 10, 5],
|
|
['#NUM!', -1.1, 2.2, 3.3],
|
|
['#NUM!', 1.1, 2.2, -3.3],
|
|
['#VALUE!', 'NaN', 0.1, 0.2],
|
|
['#VALUE!', 1.1, 'NAN', 0.2],
|
|
['#VALUE!', 1.1, 0.1, 'NAN'],
|
|
];
|