本文整理匯總了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());
}