Main Content

Extract and Model Specific Data Segments

This example shows how to create a multi-experiment, time-domain data set by merging only the accurate data segments and ignoring the rest.

数据加载和阴谋。

loadiddemo8; plot(dat);

图包含2轴objects. Axes object 1 with title y1 contains an object of type line. This object represents dat. Axes object 2 with title u1 contains an object of type line. This object represents dat.

The data has poor or no measurements from samples 251 to 280 and 601 to 650. You cannot simply concatenate the good data segments because the transients at the connection points compromise the model. Instead, you must create a multiexperimentiddataobject, where each experiment corresponds to a good segment of data.

Create multiexperiment data set by merging data segments.

datam = merge(dat(1:250),dat(281:600),dat(651:1000));

Estimate a state-space model using the multiexperiment data set using experiments 1 and 2.

data_est = getexp(datam,[1,2]); m = ssest(data_est,2);

Validate the model by comparing its output to the output data of experiment 3.

data_val = getexp(datam,3); compare(data_val,m)

Figure contains an axes object. The axes object contains 2 objects of type line. These objects represent data\_val (y1), m: 80.02%.