/// <summary> /// Returns a new instance of the <see cref="BernoulliIntegerSubset"/> class of a given size /// from a sparse list of log odds. /// </summary> /// <param name="logOdds">The sparse list of log odds.</param> /// <param name="tolerance">The tolerance for the approximation.</param> /// <returns>The new <see cref="BernoulliIntegerSubset"/> instance.</returns> public static BernoulliIntegerSubset FromLogOdds( ISparseList <double> logOdds, double tolerance) { BernoulliIntegerSubset result = new BernoulliIntegerSubset(); result.SparseBernoulliList = SparseBernoulliList.FromLogOdds(logOdds, tolerance); return(result); }
/// <summary> /// Returns a new instance of the <see cref="BernoulliIntegerSubset"/> class of a given size /// with each element having a given log odds. /// </summary> /// <param name="size">The size of the list.</param> /// <param name="logOdds">The desired log odds.</param> /// <param name="tolerance">The tolerance for the approximation.</param> /// <returns>The new <see cref="BernoulliIntegerSubset"/> instance.</returns> public static BernoulliIntegerSubset FromLogOdds( int size, double logOdds, double tolerance) { var result = new BernoulliIntegerSubset(); result.SparseBernoulliList = SparseBernoulliList.FromLogOdds(size, logOdds, tolerance); return(result); }