Main Content

release

Unlock online parameter estimation System object

Description

example

release(obj) unlocks the online parameter estimation System object™, obj. Use release to change nontunable properties of the object.

Note

You can use release on a System object in code generated using MATLAB® Coder™, but once you release its resources, you cannot use that System object again.

Examples

collapse all

Create a System object™ for online estimation of an ARMAX model with default properties.

obj = recursiveARMAX;

Estimate model parameters online using step and input-output data.

[A,B,C,EstimatedOutput] = step(obj,1,1);

step puts the object in a locked state.

L = isLocked(obj)
L = logical
   1

Unlock the object.

release(obj)

Check the locked status of the object.

L = isLocked(obj)
L = logical
   0

Input Arguments

collapse all

System object for online parameter estimation, created using one of the following commands:

Version History

Introduced in R2015b