ILIAS
release_5-3 Revision v5.3.23-19-g915713cf615
◀ ilDoc Overview
Maths.php
Go to the documentation of this file.
1
<?php
14
function
hypo
($a, $b) {
15
if
(abs($a) > abs($b)) {
16
$r
= $b / $a;
17
$r
= abs($a) * sqrt(1 +
$r
*
$r
);
18
} elseif ($b != 0) {
19
$r
= $a / $b;
20
$r
= abs($b) * sqrt(1 +
$r
*
$r
);
21
}
else
{
22
$r
= 0.0;
23
}
24
return
$r
;
25
}
// function hypo()
26
27
$r
$r
Definition:
example_031.php:79
hypo
hypo($a, $b)
Definition:
Maths.php:14
libs
composer
vendor
phpoffice
phpexcel
Classes
PHPExcel
Shared
JAMA
utils
Maths.php
Generated on Sat Jan 18 2025 19:01:07 for ILIAS by
1.8.13 (using
Doxyfile
)