ExpectationMaximization

class ExpectationMaximization : MixtureOptimizer!T(
alias Gradient
T
) if (
isFloatingPoint!T
) {}

Constructors

this
this(size_t k, size_t maxLength)

Constructor

Members

Functions

eval
void eval(bool delegate(T a, T b) @(nogc) nothrow findRootTolerance)
Undocumented in source. Be warned that the author may not have intended to support it.
update
void update()
Undocumented in source. Be warned that the author may not have intended to support it.

Parameters

Gradient

Gradient of the objective function. Gradient(a, b) should perform b = grad_f(a).

Meta