mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-23 22:28:36 +00:00
23 lines
353 B
PHP
23 lines
353 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
[
|
|
-0.1517996372084,
|
|
[3, 4, 5, 2, 3, 4, 5, 6, 4, 7],
|
|
],
|
|
[
|
|
0.532657874050135,
|
|
[4, 5, 4, 4, 4, 4, 4, 2, 3, 5, 5, 3],
|
|
],
|
|
[
|
|
'#DIV/0!',
|
|
['A', 'B', 'C', 'D', 'E'],
|
|
],
|
|
[
|
|
'#DIV/0!',
|
|
[1, 2, 3, 'A', 'B', 'C', 'D', 'E'],
|
|
],
|
|
];
|