Advertisement
tsounakis

Frequency Response Plot

Nov 8th, 2021
937
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.52 KB | None | 0 0
  1. freq = [30, 100, 300, 1000, 3000, 10000, 30000, 100000, 300000];
  2.  
  3. v = [19.913
  4.     23.694
  5.     24.350
  6.     24.506
  7.     24.506
  8.     24.506
  9.     23.694
  10.     19.181
  11.     10.931];
  12.  
  13. loglog(freq, v, "r.-");
  14. grid on;
  15. title("Frequency response of CE-CC amplifier");
  16. ylabel("Gain (dB)");
  17. xlabel("Frequency (Hz)");
  18. xlim([0,350000]);
  19. ylim([0,30]);
  20. annotation('textbox', [0.14, 0.12, 0.1, 0.1], 'String', "(20×log|^{V_o}/_{V_i}|)")
  21.  
  22.  
  23. % Athanasios Tsounakis (1072771)
  24. % Christos Katsandris (1072755)
  25. % Dept. ECE, University of Patras
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement