22 if (!function_exists(__NAMESPACE__ .
'\\subtract')) {
23 function subtract(...$matrixValues):
Matrix 25 if (count($matrixValues) < 2) {
26 throw new Exception(
'Subtraction operation requires at least 2 arguments');
29 $matrix = array_shift($matrixValues);
35 throw new Exception(
'Subtraction arguments must be Matrix or array');
40 foreach ($matrixValues as
$matrix) {
Class for the creating "special" Matrices.