Esempio n. 1
0
 RightIsSymmetricAndNonPosDefiniteComplexMatrixDoubleMatrixDivision() :
     base(
         expected: new ComplexMatrixState(
             asColumnMajorDenseArray: GetAsColumnMajorDenseArray(),
             numberOfRows: 2,
             numberOfColumns: 5),
         left: TestableComplexMatrix23.Get(),
         right: TestableDoubleMatrix31.Get()
         )
 {
 }
Esempio n. 2
0
 RightIsSymmetricAndNonPosDefiniteDoubleMatrixDoubleMatrixDivision() :
     base(
         expected: new DoubleMatrixState(
             asColumnMajorDenseArray: new double[10]
             { 0.25, 0, -0.5, 2, 2.5, 0, -1.25, 0, 0.25, 0 },
             numberOfRows: 2,
             numberOfColumns: 5),
         left: TestableDoubleMatrix23.Get(),
         right: TestableDoubleMatrix31.Get()
         )
 {
 }