示例#1
0
 RightIsUpperTriangularDoubleMatrixDoubleMatrixDivision() :
     base(
         expected: new DoubleMatrixState(
             asColumnMajorDenseArray: new double[10]
             { 1, 2, 1, 1, 0.1667, 0.1667, 0.0167, 0.0167, -0.0012, -0.0012 },
             numberOfRows: 2,
             numberOfColumns: 5),
         left: TestableDoubleMatrix23.Get(),
         right: TestableDoubleMatrix25.Get()
         )
 {
 }
 RightIsUpperTriangularComplexMatrixDoubleMatrixDivision() :
     base(
         expected: new ComplexMatrixState(
             asColumnMajorDenseArray: new Complex[10]
 {
     new Complex(1, 1),
     new Complex(2, 2),
     new Complex(1, 1),
     new Complex(1, 1),
     new Complex(0.1667, 0.1667),
     new Complex(0.1667, 0.1667),
     new Complex(0.0167, 0.0167),
     new Complex(0.0167, 0.0167),
     new Complex(-0.0012, -0.0012),
     new Complex(-0.0012, -0.0012)
 },
             numberOfRows: 2,
             numberOfColumns: 5),
         left: TestableComplexMatrix23.Get(),
         right: TestableDoubleMatrix25.Get()
         )
 {
 }