blob: 84acd9178139a5a8da69bcd85e0c8e76b433662f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Example 4 Page No: 1.84
//given
clear
a=50;
vi=20e-3;
sr=0.5e6;
//determine max frequency
format(6);
vm=a*vi;
freq1=sr/(2*3.14*vm);
disp('max frequency of input is = '+string(freq1/10^3)+' Khz');
|