isct
Returns true if the LTI model is in continuous time.
Syntax
BRES = isct(sys)
Inputs
- sys
- An LTI model.
Outputs
- BRES
- A Boolean true if it is a continuous-time model.
Examples
Gz = tf(4.7, [1 -4.3], -1);
isct(Gz)
ans = 0
Gz = tf(4.7, [1 -4.3]);
isct(Gz)
ans = 1