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.
65 lines
2.2 KiB
65 lines
2.2 KiB
<?php
|
|
|
|
use PhpOffice\PhpSpreadsheet\Spreadsheet;
|
|
|
|
require __DIR__ . '/../../Header.php';
|
|
|
|
$category = 'Engineering';
|
|
$functionName = 'BITLSHIFT';
|
|
$description = 'Returns a number shifted left by the specified number of bits';
|
|
|
|
$helper->titles($category, $functionName, $description);
|
|
|
|
// Create new PhpSpreadsheet object
|
|
$spreadsheet = new Spreadsheet();
|
|
$worksheet = $spreadsheet->getActiveSheet();
|
|
|
|
// Add some data
|
|
$testData = [
|
|
[1],
|
|
[3],
|
|
[9],
|
|
[15],
|
|
[26],
|
|
];
|
|
$testDataCount = count($testData);
|
|
|
|
$worksheet->fromArray($testData, null, 'A1', true);
|
|
|
|
for ($row = 1; $row <= $testDataCount; ++$row) {
|
|
$worksheet->setCellValue('B' . $row, '=DEC2BIN(A' . $row . ')');
|
|
$worksheet->setCellValue('C' . $row, '=BITLSHIFT(A' . $row . ',1)');
|
|
$worksheet->setCellValue('D' . $row, '=DEC2BIN(C' . $row . ')');
|
|
$worksheet->setCellValue('E' . $row, '=BITLSHIFT(A' . $row . ',2)');
|
|
$worksheet->setCellValue('F' . $row, '=DEC2BIN(E' . $row . ')');
|
|
$worksheet->setCellValue('G' . $row, '=BITLSHIFT(A' . $row . ',3)');
|
|
$worksheet->setCellValue('H' . $row, '=DEC2BIN(G' . $row . ')');
|
|
}
|
|
|
|
// Test the formulae
|
|
for ($row = 1; $row <= $testDataCount; ++$row) {
|
|
$helper->log(sprintf(
|
|
'(E%d): Bitwise Left Shift of %d (%s) by 1 bit is %d (%s)',
|
|
$row,
|
|
$worksheet->getCell('A' . $row)->getValue(),
|
|
$worksheet->getCell('B' . $row)->getCalculatedValue(),
|
|
$worksheet->getCell('C' . $row)->getCalculatedValue(),
|
|
$worksheet->getCell('D' . $row)->getCalculatedValue(),
|
|
));
|
|
$helper->log(sprintf(
|
|
'(E%d): Bitwise Left Shift of %d (%s) by 2 bits is %d (%s)',
|
|
$row,
|
|
$worksheet->getCell('A' . $row)->getValue(),
|
|
$worksheet->getCell('B' . $row)->getCalculatedValue(),
|
|
$worksheet->getCell('E' . $row)->getCalculatedValue(),
|
|
$worksheet->getCell('F' . $row)->getCalculatedValue(),
|
|
));
|
|
$helper->log(sprintf(
|
|
'(E%d): Bitwise Left Shift of %d (%s) by 3 bits is %d (%s)',
|
|
$row,
|
|
$worksheet->getCell('A' . $row)->getValue(),
|
|
$worksheet->getCell('B' . $row)->getCalculatedValue(),
|
|
$worksheet->getCell('G' . $row)->getCalculatedValue(),
|
|
$worksheet->getCell('H' . $row)->getCalculatedValue(),
|
|
));
|
|
}
|
|
|