本文整理汇总了PHP中Matrix::getRows方法的典型用法代码示例。如果您正苦于以下问题:PHP Matrix::getRows方法的具体用法?PHP Matrix::getRows怎么用?PHP Matrix::getRows使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Matrix
的用法示例。
在下文中一共展示了Matrix::getRows方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: product
public function product(Matrix $matrix)
{
if ($this->columns !== $matrix->getRows()) {
return false;
}
$c = $matrix->getColumns();
$result = new Matrix($this->rows, $c);
for ($i = 0; $i < $this->rows; ++$i) {
for ($j = 0; $j < $c; ++$j) {
$sum = 0;
for ($k = 0; $k < $this->columns; ++$k) {
$sum += $this->matrix[$i][$k] * $matrix->getElement($k, $j);
}
$result->setElement($i, $j, $sum);
}
}
return $result;
}
示例2: matrixFromDoubles
/**
* Create a matrix from an array of doubles.
*
* @param
* sourceMatrix
* An array of doubles.
*/
public static function matrixFromDoubles(array $sourceMatrix)
{
$out = new Matrix(count($sourceMatrix), count($sourceMatrix[0]));
for ($r = 0; $r < $out->getRows(); ++$r) {
for ($c = 0; $c < $out->getCols(); ++$c) {
$out->set($r, $c, $sourceMatrix[$r][$c]);
}
}
return $out;
}
示例3: testSize
public function testSize()
{
$matrix = new Matrix([[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12]]);
$this->assertEquals(3, $matrix->getRows());
$this->assertEquals(4, $matrix->getCols());
}