ILIAS
release_5-2 Revision v5.2.25-18-g3f80b828510
◀ 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
php
libs
composer
vendor
phpoffice
phpexcel
Classes
PHPExcel
Shared
JAMA
utils
Maths.php
Generated on Fri Jan 17 2025 19:00:54 for ILIAS by
1.8.13 (using
Doxyfile
)