Esempio n. 1
0
 public void SetTo(DistributionFileArray <T, DomainType> value)
 {
     for (int i = 0; i < count; i++)
     {
         this[i] = value[i];
     }
 }
Esempio n. 2
0
 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;
     }
 }
Esempio n. 3
0
 public void SetToPower(DistributionFileArray <T, DomainType> value, double exponent)
 {
     throw new NotImplementedException();
 }
Esempio n. 4
0
 public void SetToRatio(DistributionFileArray <T, DomainType> numerator, DistributionFileArray <T, DomainType> denominator, bool forceProper)
 {
     throw new NotImplementedException();
 }
Esempio n. 5
0
 public double GetAverageLog(DistributionFileArray <T, DomainType> that)
 {
     throw new NotImplementedException();
 }
Esempio n. 6
0
 public double GetLogAverageOfPower(DistributionFileArray <T, DomainType> that, double power)
 {
     throw new NotImplementedException();
 }
Esempio n. 7
0
 public void SetToSum(double weight1, DistributionFileArray <T, DomainType> value1, double weight2, DistributionFileArray <T, DomainType> value2)
 {
     throw new NotImplementedException();
 }