NGMV Control Toolbox Previous page   Next Page
dcgain2

DC gain of an LTI system with removed integrators/differentiators

Syntax

Description

G = DCGAIN2(SYS) works like (and uses) dcgain routine from the Control System Toolbox except it neglects any poles or zeros at the origin (continous-time systems) or at 1 (discrete-time systems), in which cases the DC gain is zero or infinity.

Examples

s = tf('s');
dcgain2(1/(s+1))
ans =
 1
dcgain2(1/s/(s+1))
ans =
 1
dcgain2(s/(s+1))
ans =
 1
  

Previous page   dcfe   dio1  Next page