ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
◀ ilDoc Overview
adjoint.php
Go to the documentation of this file.
1
<?
php
2
11
namespace
Matrix
;
12
20
if
(!function_exists(__NAMESPACE__ .
'\\adjoint'
)) {
21
function
adjoint(
$matrix
):
Matrix
22
{
23
if
(is_array(
$matrix
)) {
24
$matrix
=
new
Matrix
(
$matrix
);
25
}
26
if
(!
$matrix
instanceof
Matrix
) {
27
throw
new
Exception
(
'Must be Matrix or array'
);
28
}
29
30
return
Functions::adjoint
(
$matrix
);
31
}
32
}
Matrix\Functions\adjoint
static adjoint(Matrix $matrix)
Return the adjoint of this matrix The adjugate, classical adjoint, or adjunct of a square matrix is t...
Definition:
Functions.php:32
$matrix
$matrix
Definition:
test.php:18
php
Matrix
Class for the creating "special" Matrices.
Definition:
Builder.php:11
Exception
libs
composer
vendor
markbaker
matrix
classes
src
Functions
adjoint.php
Generated on Thu Feb 27 2025 19:01:21 for ILIAS by
1.8.13 (using
Doxyfile
)