ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
|
Public Member Functions | |
execute ($value, string $type='division') | |
Execute the division. More... | |
execute ($value, string $type='multiplication') | |
Execute the multiplication. More... | |
![]() | |
__construct (Matrix $matrix) | |
Create an new handler object for the operation. More... | |
result () | |
Return the result of the operation. More... | |
Additional Inherited Members | |
![]() | |
multiplyScalar ($value, string $type='multiplication') | |
Execute the multiplication for a scalar. More... | |
multiplyMatrix (Matrix $value, string $type='multiplication') | |
Execute the multiplication for a matrix. More... | |
![]() | |
validateMatchingDimensions (Matrix $matrix) | |
Compare the dimensions of the matrices being operated on to see if they are valid for addition/subtraction. More... | |
validateReflectingDimensions (Matrix $matrix) | |
Compare the dimensions of the matrices being operated on to see if they are valid for multiplication/division. More... | |
![]() | |
$matrix | |
$rows | |
Number of rows in the matrix. More... | |
$columns | |
Number of columns in the matrix. More... | |
Definition at line 10 of file Division.php.
Matrix\Operators\Division::execute | ( | $value, | |
string | $type = 'division' |
||
) |
Execute the division.
mixed | $value | The matrix or numeric value to divide the current base value by |
Exception | If the provided argument is not appropriate for the operation |
Reimplemented from Matrix\Operators\Multiplication.
Definition at line 19 of file Division.php.
References $type, Matrix\Functions\inverse(), Matrix\Operators\Multiplication\multiplyMatrix(), and Matrix\Operators\Multiplication\multiplyScalar().