Пример #1
0
 public BinomialDistribution(BinomialDistribution original)
 {
     this.CopyFrom(original);
 }
Пример #2
0
 public void CopyFrom(BinomialDistribution original)
 {
     this.NumOnes  = original.NumOnes;
     this.NumZeros = original.NumZeros;
 }
Пример #3
0
 public Distribution(BinomialDistribution other)
 {
     this.sumValue        = other.NumOnes;
     this.sumSquaredValue = other.NumOnes;
     this.sumWeight       = other.NumItems;
 }