You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
<?php
|
|
|
|
use PhpOffice\PhpSpreadsheet\Spreadsheet;
|
|
|
|
require __DIR__ . '/../../Header.php';
|
|
|
|
$category = 'Engineering';
|
|
$functionName = 'IMSUM';
|
|
$description = 'Returns the sum of two or more complex numbers in x + yi or x + yj text format';
|
|
|
|
$helper->titles($category, $functionName, $description);
|
|
|
|
// Create new PhpSpreadsheet object
|
|
$spreadsheet = new Spreadsheet();
|
|
$worksheet = $spreadsheet->getActiveSheet();
|
|
|
|
// Add some data
|
|
$testData = [
|
|
['3+4i', '5-3i'],
|
|
['3+4i', '5+3i'],
|
|
['-238+240i', '10+24i'],
|
|
['1+2i', 30],
|
|
['1+2i', '2i'],
|
|
];
|
|
$testDataCount = count($testData);
|
|
|
|
$worksheet->fromArray($testData, null, 'A1', true);
|
|
|
|
for ($row = 1; $row <= $testDataCount; ++$row) {
|
|
$worksheet->setCellValue('C' . $row, '=IMSUM(A' . $row . ', B' . $row . ')');
|
|
}
|
|
|
|
// Test the formulae
|
|
for ($row = 1; $row <= $testDataCount; ++$row) {
|
|
$helper->log(sprintf(
|
|
'(E%d): The Sum of %s and %s is %s',
|
|
$row,
|
|
$worksheet->getCell('A' . $row)->getValue(),
|
|
$worksheet->getCell('B' . $row)->getValue(),
|
|
$worksheet->getCell('C' . $row)->getCalculatedValue(),
|
|
));
|
|
}
|
|
|