concatenateBottom() публичный Метод

public concatenateBottom ( self $other ) : self
$other self
Результат self
Пример #1
0
 public function testConcatenateBottomWrongSizes()
 {
     $matrixA = new Matrix([[1, 2, 3]]);
     $matrixB = new Matrix([[4], [5], [6]]);
     static::expectException(MatrixException::class);
     $matrixA->concatenateBottom($matrixB);
 }