-1

How to plot the following transfer function?

pic

A = 5;
num = [A];
den = [];
fun = tf(num, den);
bode(fun);

How to input the bottom line?

Sardar Usama
  • 19,536
  • 9
  • 36
  • 58
AlfroJang80
  • 125
  • 2
  • 8

1 Answers1

0
s= tf([1 0],1) % s contains the tf object with `s` transfer function
system= 5/(1+s/w1)/(1+s/w2)/(1+s/w3) % this works due to the operator overloading
bode(system)
AVK
  • 2,130
  • 3
  • 15
  • 25