blob: b92f7f645a8ee2877ae9066bc1e4afc870e638c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//Caption: Maximum Amplitude,SNR
//Example 4.24
//page no 199
//determine the Maximum Amplitude,
//
clear;
clc;
del=250*10^-3;
wm=2*%pi*1000;
fs=3*10^3;
Ts=1/fs
Amax=(del*3*fs*2)/(wm);//Amplitude
disp("V",Amax,"Maximum Amplitude,");
|