This commit is contained in:
CismonX 2019-08-19 04:29:45 +08:00
parent 1eb45fe29a
commit c50b39110e
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ batch_assert_mat('arithmetic operations',
[str2mat('2 4; 6 8'), $mat->mul(2)],
[str2mat('5 12; 21 32'), $mat->dotMul($mat1)],
[str2mat('0 0; 0 0'), $mat->div($mat1)],
[str2mat('0 1; 1 2'), $mat->div(2)],
[str2mat('0 1; 1 2'), $mat->div(2)]
);
?>