Exemplo n.º 1
0
 LeftIsNullDoubleMatrixComplexMatrixElementWiseMultiplication() :
     base(
         expected: new ArgumentNullException(paramName: "left"),
         left: null,
         right: TestableComplexMatrix00.Get()
         )
 {
 }
 LeftIsNullComplexMatrixComplexMatrixSubtraction() :
     base(
         expected: new ArgumentNullException(paramName: "left"),
         left: null,
         right: TestableComplexMatrix00.Get()
         )
 {
 }
Exemplo n.º 3
0
 public RightIsNullComplexMatrixComplexMatrixMultiplication() :
     base(
         expected: new ArgumentNullException(paramName: "right"),
         left: TestableComplexMatrix00.Get(),
         right: null
         )
 {
 }