Overview
Comment: | Outputs current (not predicted) system output estimate. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
d766467cbc7d7435c8f23793a0d0697d |
User & Date: | gawthrop@users.sourceforge.net on 2003-05-16 14:27:13 |
Other Links: | branch diff | manifest | tags |
Context
2003-05-16
| ||
14:29:54 | Linear intermittent PPP for real-time control -- Lego RCX in first instance check-in: 5b07002260 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
14:27:13 | Outputs current (not predicted) system output estimate. check-in: d766467cbc user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
11:18:03 | New COMPONENT argument. check-in: 47067b3097 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/lib/control/PPP/ppp_int_obs.m from [4bb5bb544e] to [77b56df53a].
|
| | | 1 2 3 4 5 6 7 8 | function [x_new,y_new] = ppp_int_obs (x,y,U,A,B,C,D,A_u,delta,L) ## usage: x_new = ppp_int_obs (x,y,U,A,B,C,D,A_u,delta,L) ## ## Intermittent observer for PPP ## ## x,y Current estimated state and measured output ## U PPP control weights |
︙ | ︙ | |||
19 20 21 22 23 24 25 | endif ## Predictor [y_p,us,x_p] = ppp_ystar (A,B,C,D,x,A_u,U,delta); ## Corrector x_new = x_p - L*(y_p-y); | | | 19 20 21 22 23 24 25 26 27 | endif ## Predictor [y_p,us,x_p] = ppp_ystar (A,B,C,D,x,A_u,U,delta); ## Corrector x_new = x_p - L*(y_p-y); y_new = C*x_new; endfunction |