Example #1
0
 RightIsScalarDoubleMatrixComplexMatrixDivision() :
     base(
         expected: new ComplexMatrixState(
             asColumnMajorDenseArray: GetAsColumnMajorDenseArray(),
             numberOfRows: 2,
             numberOfColumns: 3),
         left: TestableDoubleMatrix16.Get(),
         right: TestableComplexMatrix19.Get()
         )
 {
 }
Example #2
0
 RightIsScalarComplexMatrixComplexMatrixDivision() :
     base(
         expected: new ComplexMatrixState(
             asColumnMajorDenseArray: new Complex[6] { 0, .5, 1, 1.5, 2, 2.5 },
             numberOfRows: 2,
             numberOfColumns: 3),
         left: TestableComplexMatrix16.Get(),
         right: TestableComplexMatrix19.Get()
         )
 {
 }
Example #3
0
 LeftIsScalarComplexMatrixDoubleMatrixMultiplication() :
     base(
         expected: new ComplexMatrixState(
             asColumnMajorDenseArray: new Complex[6]
 {
     0,
     new Complex(2, 2),
     new Complex(4, 4),
     new Complex(6, 6),
     new Complex(8, 8),
     new Complex(10, 10)
 },
             numberOfRows: 2,
             numberOfColumns: 3),
         left: TestableComplexMatrix19.Get(),
         right: TestableDoubleMatrix16.Get()
         )
 {
 }
 RightIsScalarComplexMatrixComplexMatrixMultiplication() :
     base(
         expected: new ComplexMatrixState(
             asColumnMajorDenseArray: new Complex[6]
 {
     0,
     new Complex(0, 4),
     new Complex(0, 8),
     new Complex(0, 12),
     new Complex(0, 16),
     new Complex(0, 20)
 },
             numberOfRows: 2,
             numberOfColumns: 3),
         left: TestableComplexMatrix16.Get(),
         right: TestableComplexMatrix19.Get()
         )
 {
 }