fisherFVariable

$(WIKI_D F).

  1. struct FisherFVariable(T)
  2. FisherFVariable!T fisherFVar(T d1, T d2)
  3. alias fisherFVariable = fisherFVar
    alias fisherFVariable = fisherFVar

Examples

auto rv = fisherFVar(3.0, 4);
static assert(isRandomVariable!(typeof(rv)));
import mir.random.engine;
auto x = rv(rne);

Meta