Browse Source

Documentation fixes.

Signed-off-by: jvangael <jurgen.vangael@gmail.com>
la-knuth
Jurgen Van Gael 17 years ago
parent
commit
11a3485c8c
  1. 2
      src/Numerics/Statistics/MCMC/MCMCSampler.cs
  2. 2
      src/Numerics/Statistics/MCMC/RejectionSampler.cs

2
src/Numerics/Statistics/MCMC/MCMCSampler.cs

@ -97,7 +97,7 @@ namespace MathNet.Numerics.Statistics.Mcmc
protected int mSamples;
/// <summary>
/// Initializes a new instance of the <see cref="AbstractRandomNumberGenerator"/> class.
/// Initializes a new instance of the <see cref="McmcSampler"/> class.
/// </summary>
/// <remarks>Thread safe instances are two and half times slower than non-thread
/// safe classes.</remarks>

2
src/Numerics/Statistics/MCMC/RejectionSampler.cs

@ -34,7 +34,7 @@ namespace MathNet.Numerics.Statistics.Mcmc
/// <summary>
/// Rejection sampling produces samples from distribition P by sampling from a proposal distribution Q
/// and accepting/rejecting based on the density of P and Q. The density of P and Q don't need to
/// to be normalized, but we do need that for each x, P(x) < Q(x).
/// to be normalized, but we do need that for each x, P(x) &lt; Q(x).
/// </summary>
/// <typeparam name="T">The type of samples this sampler produces.</typeparam>
public class RejectionSampler<T> : McmcSampler<T>

Loading…
Cancel
Save