Exemplo n.º 1
0
 public BinomialDistribution(BinomialDistribution original)
 {
     this.CopyFrom(original);
 }
Exemplo n.º 2
0
 public void CopyFrom(BinomialDistribution original)
 {
     this.NumOnes  = original.NumOnes;
     this.NumZeros = original.NumZeros;
 }
Exemplo n.º 3
0
 public Distribution(BinomialDistribution other)
 {
     this.sumValue        = other.NumOnes;
     this.sumSquaredValue = other.NumOnes;
     this.sumWeight       = other.NumItems;
 }