concatenateRight() 공개 메소드

public concatenateRight ( self $other ) : self
$other self
리턴 self
예제 #1
0
 public function testConcatenateRightWrongSizes()
 {
     $matrixA = new Matrix([[1, 2, 3]]);
     $matrixB = new Matrix([[4], [5], [6]]);
     static::expectException(MatrixException::class);
     $matrixA->concatenateRight($matrixB);
 }