summaryrefslogtreecommitdiff
path: root/1757/CH7/EX7.6/EX7_6.sce
blob: 2cd1378dda3b6ad1d65a20e118ed7161d203d79a (plain)
1
2
3
4
5
6
7
8
9
10
11
//Example7.6  // to design an active high pass filter with cut-off frequency 10KHz
clc;
clear;
close;
fc = 10 ; // KHz 
C = 0.01 ; //uF // we assume
// the cut-off frequency of active high pass filter is given by
// fc = 2*%pi*R3*C;
// R3 can be calculated as
R3 = (1/(2*%pi*fc*C));
disp('The resistance R3 is = '+string(R3)+' K ohm ');