You are here: Symbol Reference > Dew.Signal Namespace > LinearSystems Class > LinearSystems Methods > TransferFunToStateSpace Method
Dew DSP for .NET
Contents
PreviousUpNext
LinearSystems.TransferFunToStateSpace Method

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

C#
public TransferFunToStateSpace(TMtx a, TVec b, TVec c, ref double d, TVec num, TVec den);

Convert transfer function in form of a numerator Num and denominator Num in to its state space presentation of the real valued A matrix, B,C vectors and D value. 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
What do you think about this topic? Send feedback!
Copyright (c) 1999-2010 by Dew Research. All rights reserved.