EstimatorRegulator[ss, {l, \[Kappa]}] constructs the feedback regulator for the StateSpaceModel object ss with estimator and feedback gain matrices l and \[Kappa], ...
FixedPointList[f, expr] generates a list giving the results of applying f repeatedly, starting with expr, until the results no longer change.
Join
(Built-in Mathematica Symbol) Join[list_1, list_2, ...] concatenates lists or other expressions that share the same head.Join[list_1, list_2, ..., n] joins the objects at level n in each of the list_i.
LQGRegulator[{ss, sensors, finputs}, {w, v, h}, {q, r, p}] constructs the optimal feedback regulator for the StateSpaceModel ss using noisy measurements sensors and feedback ...
NestList[f, expr, n] gives a list of the results of applying f to expr 0 through n times.
Nest
(Built-in Mathematica Symbol) Nest[f, expr, n] gives an expression with f applied n times to expr.
NestWhileList[f, expr, test] generates a list of the results of applying f repeatedly, starting with expr, and continuing until applying test to the result no longer yields ...
NestWhile[f, expr, test] starts with expr, then repeatedly applies f until applying test to the result no longer yields True. NestWhile[f, expr, test, m] supplies the most ...
PadLeft
(Built-in Mathematica Symbol) PadLeft[list, n] makes a list of length n by padding list with zeros on the left. PadLeft[list, n, x] pads by repeating the element x. PadLeft[list, n, {x_1, x_2, ...}] pads ...
RandomChoice[{e_1, e_2, ...}] gives a pseudorandom choice of one of the e_i. RandomChoice[list, n] gives a list of n pseudorandom choices. RandomChoice[list, {n_1, n_2, ...}] ...