ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
◀ ilDoc Overview
testOperations.php
Go to the documentation of this file.
1
<?
php
2
3
use
Complex\Complex
as
Complex
;
4
5
include(
'../classes/Bootstrap.php'
);
6
7
$values
= [
8
new
Complex
(123),
9
new
Complex
(456, 123),
10
new
Complex
(0.0, 456),
11
];
12
13
foreach
(
$values
as $value) {
14
echo
$value,
PHP_EOL
;
15
}
16
17
echo
'Addition'
,
PHP_EOL
;
18
19
$result
=
\Complex\add
(...
$values
);
20
echo
'=> '
,
$result
,
PHP_EOL
;
21
22
echo
PHP_EOL
;
23
24
echo
'Subtraction'
,
PHP_EOL
;
25
26
$result = \Complex\subtract(...
$values
);
27
echo
'=> '
,
$result
,
PHP_EOL
;
28
29
echo
PHP_EOL
;
30
31
echo
'Multiplication'
,
PHP_EOL
;
32
33
$result = \Complex\multiply(...
$values
);
34
echo
'=> '
,
$result
,
PHP_EOL
;
PHP_EOL
PHP_EOL
Definition:
testOperations.php:13
$result
$result
Definition:
testOperations.php:19
Complex
$values
$values
Definition:
testOperations.php:7
add
add()
Definition:
add.php:2
echo
php
libs
composer
vendor
markbaker
complex
examples
testOperations.php
Generated on Thu Jan 16 2025 19:01:43 for ILIAS by
1.8.13 (using
Doxyfile
)