public void SetTo(DistributionFileArray <T, DomainType> value) { for (int i = 0; i < count; i++) { this[i] = value[i]; } }
public void SetToProduct(DistributionFileArray <T, DomainType> a, DistributionFileArray <T, DomainType> b) { for (int i = 0; i < count; i++) { T item = this[i]; item.SetToProduct(a[i], b[i]); this[i] = item; } }
public void SetToRatio(DistributionFileArray <T, DomainType> numerator, DistributionFileArray <T, DomainType> denominator, bool forceProper) { throw new NotImplementedException(); }
public double GetAverageLog(DistributionFileArray <T, DomainType> that) { throw new NotImplementedException(); }
public double GetLogAverageOfPower(DistributionFileArray <T, DomainType> that, double power) { throw new NotImplementedException(); }
public void SetToSum(double weight1, DistributionFileArray <T, DomainType> value1, double weight2, DistributionFileArray <T, DomainType> value2) { throw new NotImplementedException(); }
public void SetToPower(DistributionFileArray <T, DomainType> value, double exponent) { throw new NotImplementedException(); }