mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-17 20:31:37 +00:00
5266086781
Further reorganization following on PR #3890.
27 lines
811 B
PHP
27 lines
811 B
PHP
<?php
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
|
|
use PhpOffice\PhpSpreadsheet\Spreadsheet;
|
|
|
|
require __DIR__ . '/../Header.php';
|
|
|
|
$category = 'Engineering';
|
|
$functionName = 'BESSELY';
|
|
$description = 'Returns the Bessel function, which is also called the Weber function or the Neumann function';
|
|
|
|
$helper->titles($category, $functionName, $description);
|
|
|
|
// Create new PhpSpreadsheet object
|
|
$spreadsheet = new Spreadsheet();
|
|
$worksheet = $spreadsheet->getActiveSheet();
|
|
|
|
for ($n = 0; $n <= 5; ++$n) {
|
|
for ($x = 0; $x <= 5; $x = $x + 0.25) {
|
|
Calculation::getInstance($spreadsheet)->flushInstance();
|
|
$formula = "BESSELY({$x}, {$n})";
|
|
$worksheet->setCellValue('A1', "=$formula");
|
|
|
|
$helper->log("$formula = " . $worksheet->getCell('A1')->getCalculatedValue());
|
|
}
|
|
}
|