Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.3 - Português

Change language to:
English - Français - 日本語 -

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Ajuda Scilab >> CACSD > dscr

dscr

discretization of linear system

Calling Sequence

[sld [,r]]=dscr(sl,dt [,m])

Arguments

sl

syslin list containing [A,B,C,D].

dt

real number, sampling period

m

covariance of the input noise (continuous time)(default value=0)

r

covariance of the output noise (discrete time) given if m is given as input

sld

sampled (discrete-time) linear system, syslin list

Description

Discretization of linear system. sl is a continuous-time system:

dx/dt=A*x+B*u (+ noise).

sld is the discrete-time system obtained by sampling sl with the sampling period dt.

Examples

s=poly(0,'s');
Sys=syslin('c',[1,1/(s+1);2*s/(s^2+2),1/s])
ss2tf(dscr(tf2ss(Sys),0.1))

See Also

  • syslin — definição de sistemas lineares
  • flts — time response (discrete time, sampled system)
  • dsimul — state space discrete time simulation
<< dhnorm CACSD dsimul >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Oct 05 12:11:30 CEST 2011