示例#1
0
 /**
  * @expectedException Innmind\Math\Exception\VectorsMustMeOfTheSameDimensionException
  */
 public function testThrowWhenAddingVectorsOfDifferentDimensions()
 {
     ColumnVector::initialize(1, 1)->add(ColumnVector::initialize(2, 1));
 }