Member of the linear systems class.
[a, b, c, d] = sos2ss(s)
[a, b, c, d] = sos2ss(s, g)
Converts a second-order section system to a state-space.
| Name | Description |
| s | Specifies a second-order section system. s is an L-by-6 matrix. Each row of s contains the coefficients of one section as [b0 b1 b2 1 a1 a2]. |
| g | Specifies the gain of the system. The default is 1. |
| Name | Description |
| a, b, c, d | Return the state-space of the system. |
[a, b, c, d] = sos2ss([1 1 1 1 2 1; 1 2 1 1 1 1])