blob: 1e0d8f35ab7fe889d8cd6d0f1fa7ec8602e2dba9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Example 7.12
clc;
clear;
close;
// Given data
format('v',6);
R= 10*10^3;// in Ω
C1= 0.1*10^-6;// in F
C2= 0.0025*10^-6;// in F
f_H= 1/(2*%pi*R*C2);//higher cut-off frequency in Hz
f_H= f_H*10^-3;// in kHz
f_L= 1/(2*%pi*R*C1);//lower cut-off frequency in Hz
BW= f_H-f_L*10^-3;// bandwidth in kHz
disp(f_H,"The higher cut-off frequency in kHz is : ")
disp(f_L,"The lower cut-off frequency in Hz is : ")
disp(BW,"The bandwidth in kHz is : ")
|