TypicalDoubleMatrixNegation() :
     base(
         expected: new DoubleMatrixState(
             asColumnMajorDenseArray: new double[9] { 0, 4, -7, -4, 0, 8, 7, -8, 0 },
             numberOfRows: 3,
             numberOfColumns: 3),
         operand: TestableDoubleMatrix15.Get()
         )
 {
 }
示例#2
0
 protected OnRowsUnadjustableKurtosis() :
     base(
         expected: new ArgumentException(
             message: (string)Reflector.ExecuteStaticMember(
                 typeof(ImplementationServices),
                 "GetResourceString",
                 new string[] { "STR_EXCEPT_STA_KURTOSIS_ADJUST_FOR_BIAS_UNDEFINED" }),
             paramName: null),
         data: TestableDoubleMatrix15.Get(),
         adjustForBias: true,
         dataOperation: DataOperation.OnRows
         )
 {
 }