RightIsSymmetricDoubleMatrixComplexMatrixDivision() :
     base(
         expected: new ComplexMatrixState(
             asColumnMajorDenseArray: GetAsColumnMajorDenseArray(),
             numberOfRows: 2,
             numberOfColumns: 5),
         left: TestableDoubleMatrix23.Get(),
         right: TestableComplexMatrix26.Get()
         )
 {
 }
 RightIsSymmetricComplexMatrixComplexMatrixDivision() :
     base(
         expected: new ComplexMatrixState(
             asColumnMajorDenseArray: new System.Numerics.Complex[10]
             { -1, 0, 2, 2, 0, 0, 0, 0, 0, 0 },
             numberOfRows: 2,
             numberOfColumns: 5),
         left: TestableComplexMatrix23.Get(),
         right: TestableComplexMatrix26.Get()
         )
 {
 }