RightWrongColsDoubleMatrixComplexMatrixElementWiseMultiplication() :
     base(
         expected: new ArgumentException(
             message: (string)Reflector.ExecuteStaticMember(
                 typeof(ImplementationServices),
                 "GetResourceString",
                 new string[] { "STR_EXCEPT_MAT_ELEMENT_WISE_ALL_DIMS_MUST_MATCH" }),
             paramName: "right"),
         left: TestableDoubleMatrix16.Get(),
         right: TestableComplexMatrix09.Get()
         )
 {
 }
 RightWrongColsComplexMatrixComplexMatrixSubtraction() :
     base(
         expected: new ArgumentException(
             message: (string)Reflector.ExecuteStaticMember(
                 typeof(ImplementationServices),
                 "GetResourceString",
                 new string[] { "STR_EXCEPT_MAT_SUBTRACT_ALL_DIMS_MUST_MATCH" }),
             paramName: "right"),
         left: TestableComplexMatrix16.Get(),
         right: TestableComplexMatrix09.Get()
         )
 {
 }
 RightWrongColsDoubleMatrixComplexMatrixDivision() :
     base(
         expected: new ArgumentException(
             message: (string)Reflector.ExecuteStaticMember(
                 typeof(ImplementationServices),
                 "GetResourceString",
                 new string[] { "STR_EXCEPT_MAT_DIVIDE_COLUMNS_MUST_MATCH" }),
             paramName: "right"),
         left: TestableDoubleMatrix16.Get(),
         right: TestableComplexMatrix09.Get()
         )
 {
 }
Example #4
0
 RightWrongRowsComplexMatrixComplexMatrixMultiplication() :
     base(
         expected: new ArgumentException(
             message: (string)Reflector.ExecuteStaticMember(
                 typeof(ImplementationServices),
                 "GetResourceString",
                 new string[] { "STR_EXCEPT_MAT_MULTIPLY_INNER_DIMS_MUST_MATCH" }),
             paramName: "right"),
         left: TestableComplexMatrix14.Get(),
         right: TestableComplexMatrix09.Get()
         )
 {
 }