LeftIsScalarComplexMatrixComplexMatrixDivision() :
     base(
         expected: new ComplexMatrixState(
             asColumnMajorDenseArray: new Complex[6]
 {
     Complex.NaN,
     10,
     5,
     3.3333333,
     2.5,
     2
 },
             numberOfRows: 2,
             numberOfColumns: 3),
         left: TestableComplexMatrix22.Get(),
         right: TestableComplexMatrix16.Get()
         )
 {
 }
 LeftIsScalarComplexMatrixDoubleMatrixDivision() :
     base(
         expected: new ComplexMatrixState(
             asColumnMajorDenseArray: new Complex[6]
 {
     Complex.NaN,
     new Complex(10, 10),
     new Complex(5, 5),
     new Complex(3.3333333, 3.3333333),
     new Complex(2.5, 2.5),
     new Complex(2, 2)
 },
             numberOfRows: 2,
             numberOfColumns: 3),
         left: TestableComplexMatrix22.Get(),
         right: TestableDoubleMatrix16.Get()
         )
 {
 }