<< ssdata | Control System functions | ssselect >> |
sysOut = ssselect(sysIn, INPUTS, OUTPUTS) |
sysOut = ssselect(sysIn, INPUTS, OUTPUTS, STATES) |
state-space model
indexes into the system inputs
indexes into the system outputs
states removed from the system.
state-space model: subsystem with removed inputs, outputs and states.
ssdelete removes inputs, outputs and states from state-space system.
A = [33,2,5; 23,200,2; 9,2,45];
B = [4,5; 12,5; 82,1];
C = [34,56,2; 6,2,112];
D = [2,0; 0,19];
sys1 = ss(A, B, C, D);
inputs = 1;
outputs = 1;
R = ssdelete(sys1, inputs, outputs)
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET