| 83 | } |
| 84 | |
| 85 | void Unscented_scheme::init () |
| 86 | /* Initialise state |
| 87 | * Pre : x,X |
| 88 | * Post: x,X is PSD |
| 89 | */ |
| 90 | { |
| 91 | // Postconditions |
| 92 | if (!isPSD (X)) |
| 93 | error (Numeric_exception("Initial X not PSD")); |
| 94 | } |
| 95 | |
| 96 | void Unscented_scheme::init_XX () |
| 97 | /* Initialise from Unscented state |
nothing calls this directly
no test coverage detected