frsp = evalfr(sys, f)
| Parameter | Description |
|---|---|
| sys | LTI model |
| f | single frequency |
| Parameter | Description |
|---|---|
| frsp | frequency response |
The function evalfr(sys, f) computes the value of the transfer function for a given system model represented by sys at the complex number f.
numerator = {[2, 0], [1, 3]};
denominator = {[4, 0, 3, -1], [1 , 3, 5]};
sys = tf(numerator, denominator);
z = 1 + j;
frsp = evalfr(sys, z)
| Version | Description |
|---|---|
| 1.0.0 | initial version |