主要内容

isct

Determine if dynamic system model is in continuous time

说明

bool = isct(sys) returns a logical value of 1 (true) if the dynamic system model sys is a continuous-time model. The function returns a logical value of 0 (false) otherwise.

输入参数

全部折叠

Dynamic system, specified as a Dynamic system model or an array of dynamic system models.

Output Arguments

全部折叠

Logical value indicating whether sys is a continuous-time model.

bool = 1 (true) if sys is a continuous-time model (sys.Ts = 0). If sys is a discrete-time model, bool = 0 (false).

For a static gain, both isct and isdt return true unless you explicitly set the sample time to a nonzero value. If you do so, isdt returns true and isct returns false.

For arrays of models, bool is true if the models in the array are continuous.

版本历史记录

在 R2012a 中推出

另请参阅

|