当前位置: 首页>>代码示例>>PHP>>正文


PHP Matrix::getRows方法代码示例

本文整理汇总了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;
 }
开发者ID:xHFx,项目名称:ImagicalMine,代码行数:18,代码来源:Matrix.php

示例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;
 }
开发者ID:katrinaniolet,项目名称:encog-php-core,代码行数:17,代码来源:Matrix.php

示例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());
 }
开发者ID:vermotr,项目名称:php-matrix,代码行数:6,代码来源:MatrixTest.php


注:本文中的Matrix::getRows方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。