本文整理汇总了PHP中Matrix::multiply方法的典型用法代码示例。如果您正苦于以下问题:PHP Matrix::multiply方法的具体用法?PHP Matrix::multiply怎么用?PHP Matrix::multiply使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Matrix
的用法示例。
在下文中一共展示了Matrix::multiply方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testMultiplyException
public function testMultiplyException()
{
$m1 = new Matrix([[1, 2, 3], [4, 5, 6]]);
$m2 = new Matrix([[7, 8], [9, 10]]);
try {
$m1->multiply($m2);
} catch (MatrixException $exception) {
return;
}
$this->fail('MatrixException not raised.');
}
示例2: testMultiplyException
/**
* @expectedException \DomainException
*/
public function testMultiplyException()
{
$arr1 = [[2, 0, -1, 1], [1, 2, 0, 1]];
$arr2 = [[1, 5, -7], [1, 1, 0], [0, -1, 1]];
$mat1 = new Matrix($arr1);
$mat2 = new Matrix($arr2);
$mat1->multiply($mat2);
//the above should throw an exception!
}