You are here: Symbol Reference > LinearSystems Namespace > Functions > LinearSystems.StateSpaceToTransferFun Function
DSP Master VCL
ContentsIndex
PreviousUpNext
LinearSystems.StateSpaceToTransferFun Function

Convert transfer function from state-space to numerator-denominator form.

Pascal
procedure StateSpaceToTransferFun(const num: TVec; const den: TVec; const A: TMtx; const B: TVec; const C: TVec; const D: Double);

Convert a transfer function defined in state space presentation of the real valued A matrix, B,C vectors and D value in to its numerator Num and denominator Den form. State space system is related to its numerator/denominator representation via the following relation:

          num(s)
  H(s) = -------- = C*(s*I-A)^(-1)*B + D
          den(s)

  dx/dt = Ax + Bu
  y     = Cx + Du

  x - system input
  y - system output
Copyright (c) 1999-2025 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!