Main Content

Use Frame-Based Data for Recursive Estimation in Simulink

This example shows how to use frame-based signals with the Recursive Least Squares Estimator block in Simulink®. Machine interfaces often provide sensor data in frames containing multiple samples, rather than in individual samples.

The recursive estimation blocks in the System Identification Toolbox™ accept these frames directly when you set Input Processing to Frame-based.

The blocks use the same estimation algorithms for sample-based and frame-based input processing. The estimation results are identical. There are some special considerations, however, for working with frame-based inputs in Simulink, and for visualizing the results.

This example is the frame-based version of the sample-based example in Estimate Parameters of System Using Simulink Recursive Estimator Block. The function reference for recursiveLS provides the equivalent sample-based command-line example.

System Description

The system has two parameters and is represented as:

$y(t) = a_1u(t) + a_2u(t-1)$

Here,

  • $u$ and $y$ are the real-time input and output data samples, respectively

  • $a_1$ and $a_2$ are the parameters $\theta$.

  • $u(t)$ and $u(t-1)$ are the regressor samples. The regressor array $H_s$ is the row vector $${H_s} = \left[ {\matrix{ {u(t)} & {u(t - 1)} \cr } } \right]$.

Frame-Based Inputs

Data frames contain multiple data samples stacked in rows, with the last row containing the most recent data. For this example, each frame contains 10 samples. The observed inputs and outputs therefore arrive as $[u(1) ... u(10)]^T$ and $[y(1) ... y(10)]^T$, where $u(i)$ and $y(i)$ are the positions within the frame for a given time $t$, and are equivalent to $u(t-10+i)$ and $y(t-10+i)$.

The regressor frame $H_f$ also uses this stacking. The $u(0)$ element in the upper right corner is the last sample from the previous input frame.

$${H_f} = \left[ {\matrix{
 {{u(1)}} & {{u(0)}} \cr
 {{u(2)}} & {{u(1)}} \cr
 \vdots & \vdots \cr
 {{u(10)}} & {{u(9)}} \cr
} } \right]$$

Open a preconfigured Simulink model based on the Recursive Least Squares Estimator block.

rlsfb = 'ex_RLS_Estimator_Block_fb';
open_system(rlsfb)

Observed Inputs and Outputs

Load the frame-based input and output signals into the workspace. Each signal consists of 30 frames, each frame containing ten individual time samples. In this implementation, the sample time is 1 second, and the frame time is 10 seconds.

load iddata3_frames input_sig_frame output_sig_frame

From Workspace blocks import signals that you loaded. In your application, this data may be arriving directly from your hardware.

Regressors

The model constructs the Regressors frame Hframe in the Construct Regressors subsystem, using input_sig_frame.

open_system([rlsfb '/Construct Regressors'])

As Frame-Based Inputs described, the frame-based regressor signal consists of the all elements of the current frame of observed inputs, along with the last sample from the previous frame. The Selector block extracts the last sample from the observed inputs frame, and the Delay block stores this value for the next frame step.

Construct Regressors, a MATLAB Function block, constructs the signal Hframe. The first column of Hframe contains the current input frame. The second column contains the current frame, shifted by one position. The first element of the second column, representing the oldest sample, is from the previous observed inputs frame.

Recursive Least Squares Estimator Block

The block configuration includes frame-based input processing with a sample time of 10.

Error Visualization

The Error port provides the prediction errors in vector-valued frame $[e(1) ... e(10)]^T$, where $e(i)$ is the position within the frame at a given time $t$ and is equivalent to $e(t-10+i)$. These prediction errors can be compared to observed outputs frame $[y(1) ... y(10)]^T$ in multiple ways. This example compares the 2-norms of these vectors. An error vector with a small norm relative to the observed outputs norm suggests successful estimation. The scope displays a plot of the comparison.

Results

Run the simulation. The Parameters scope shows the progression of the $a_1(t)$ and $a_2(t)$ parameter estimates. The adjacent Parameter Display displays the current values of $a_1(t)$ and $a_2(t)$. The scope Performance plots the 2-norms of the observed outputs and prediction error frames, as described in error as it compares with the original measurement signal as described in Error Visualization.

sim(rlsfb)
open_system([rlsfb '/Parameters'])
open_system([rlsfb '/Performance'])

The Parameters plot shows that parameter estimates converge at approximately T = 150. The Performance plot shows that the prediction errors are small compared with the observed outputs. These results suggest a successful estimation. The final parameter estimates in the Parameter display are identical to those in the command-line and the sample-based Simulink examples linked at the beginning of this example.

See Also

| |

Related Topics