MCPcopy Create free account
hub / github.com/OpenPTrack/open_ptrack_v2 / init

Method init

bayes/src/infFlt.cpp:53–68  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

51
52
53void Information_scheme::init ()
54/* Initialise the filter from x,X
55 * Precondition:
56 * x, X
57 * Postcondition:
58 * x, X is PD
59 * y, Y is PSD
60 */
61{
62 // Information
63 Float rcond = UdUinversePD (Y, X);
64 rclimit.check_PD(rcond, "Initial X not PD");
65 // Information state
66 noalias(y) = prod(Y,x);
67 update_required = false;
68}
69
70void Information_scheme::init_yY ()
71/* Initialisation directly from Information

Callers

nothing calls this directly

Calls 2

UdUinversePDFunction · 0.85
check_PDMethod · 0.80

Tested by

no test coverage detected