ssselect
Extract subsystem from larger system.
📝Syntax
sysOut = ssselect(sysIn, INPUTS, OUTPUTS)
sysOut = ssselect(sysIn, INPUTS, OUTPUTS, STATES)
📥Input Arguments
Parameter Description
sysIn state-space model
INPUTS indexes into the system inputs
OUTPUTS indexes into the system outputs
STATES specified states
📤Output Arguments
Parameter Description
sysOut state-space model: subsystem from larger system.
📄Description

ssselect extracts subsystem from larger system.

💡Examples
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 = ssselect(sys1, inputs, outputs)

    
🔗See Also
ssdelete
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub