From f35ea80659b6a49d1bb2ce1d7d002583f3f40947 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:38:01 +0530 Subject: updated the code --- 62/CH6/EX6.50/ex_6_50.sce | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to '62/CH6/EX6.50') diff --git a/62/CH6/EX6.50/ex_6_50.sce b/62/CH6/EX6.50/ex_6_50.sce index 7234437d9..643fec265 100755 --- a/62/CH6/EX6.50/ex_6_50.sce +++ b/62/CH6/EX6.50/ex_6_50.sce @@ -36,10 +36,10 @@ poly1=a.children.children; poly1.thickness=3; poly1.foreground=2; clear y; -X=dft(x,-1); -H=dft(h,-1); +X=fft(x,-1); +H=fft(h,-1); Y=H.*X; -y=dft(Y,1); +y=fft(Y,1); subplot(4,1,4) plot2d3(n,y); xtitle('y[n]','n') @@ -50,4 +50,4 @@ a.y_location="right"; poly1=a.children.children; poly1.thickness=3; poly1.foreground=2; -plot(n,x,'r.') +plot(n,x,'r.') \ No newline at end of file -- cgit