Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.5.0 - English

Change language to:
Français - 日本語 - Português - Русский

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

Scilab Help >> CACSD (Computer Aided Control Systems Design) > 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 — linear system definition
  • flts — time response (discrete time, sampled system)
  • dsimul — state space discrete time simulation
Report an issue
<< dhnorm CACSD (Computer Aided Control Systems Design) 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:
Fri Apr 11 14:06:51 CEST 2014