blob: 1b9abc7dde8dc47223cd2e8d994803bf1e5146de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
clc
// Fundamental of Electric Circuit
// Charles K. Alexander and Matthew N.O Sadiku
// Mc Graw Hill of New York
// 5th Edition
// Part 2 : AC Circuits
// Chapter 14 : Frequency Response
// Example 14 - 4
clear; clc; close;
//
w=poly(0,'w')
h=syslin('c',(w+10)/(w^3+10*w^2+25*w))
clf();bode(h,0.01,100);
|