public UnexplainedVarianceProportion(
     InputParameter input,
     OutputParameter output,
     AnalyticalExpression formula,
     WorkedPointsErrorValue error
     )
 {
     this.Input             = input;
     this.Output            = output;
     this.ModelFormula      = formula;
     this.WorkedPointsError = error;
 }
Пример #2
0
 public ParametersModel(AnalyticalExpression expression, WorkedPointsErrorValue errorValue)
 {
     this.Expression = expression;
     this.ErrorValue = errorValue;
 }