Example #1
0
 public Correlation(CorrelationMatrix Parent, EstimateInput input1, EstimateInput input2, double coef) //allows for building these after mass-calculating a correl coef matrix
 {
     this.Parent      = Parent;
     this.input1      = input1;
     this.input2      = input2;
     this.Coefficient = coef;
     //this.CoefMin = CalculateMin();
     //this.CoefMax = CalculateMax();
 }
Example #2
0
 public Correlation(CorrelationMatrix Parent, EstimateInput input1, EstimateInput input2)
 {
     this.Parent      = Parent;
     this.input1      = input1;
     this.input2      = input2;
     this.Coefficient = CalculateCoefficient();
     //this.CoefMin = CalculateMin();
     //this.CoefMax = CalculateMax();
 }