Locked status of online parameter estimation System object
L = isLocked(obj)
example
L = isLocked(obj) returns the locked status of online parameter estimation System object™, obj.
L
obj
collapse all
Create a System object™ for online estimation of an ARMAX model with default properties.
obj = recursiveARMAX;
Check the locked status of the object.
L = logical 0
Estimate model parameters online using step and input-output data.
step
[A,B,C,EstimatedOutput] = step(obj,1,1);
Check the locked status of the object again.
L = logical 1
step puts the object in a locked state.
recursiveAR
recursiveARMA
recursiveARX
recursiveARMAX
recursiveOE
recursiveBJ
recursiveLS
System object for online parameter estimation, created using one of the following commands:
Locked status of online estimation System object, returned as a logical value. L is true if obj is locked.
true
clone | recursiveAR | recursiveARMA | recursiveARMAX | recursiveARX | recursiveBJ | recursiveLS | recursiveOE | release | reset | step
clone
release
reset
You have a modified version of this example. Do you want to open this example with your edits?