diff options
Diffstat (limited to '52/CH2/EX2.19/Example2_19.sce')
-rwxr-xr-x | 52/CH2/EX2.19/Example2_19.sce | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/52/CH2/EX2.19/Example2_19.sce b/52/CH2/EX2.19/Example2_19.sce new file mode 100755 index 000000000..a3bb6f748 --- /dev/null +++ b/52/CH2/EX2.19/Example2_19.sce @@ -0,0 +1,25 @@ +//Example 2.19
+//Program to Plot Magnitude and Phase Responce
+clear;
+clc ;
+close ;
+w=-%pi:0.01:%pi;
+H=1/(1-0.5*(cos(w)-%i*sin(w)));
+//caluculation of Phase and Magnitude of H
+[phase_H,m]=phasemag(H);
+Hm=abs(H);
+a=gca();
+subplot(2,1,1);
+a.y_location="origin";
+plot2d(w/%pi,Hm);
+xlabel('Frequency in Radians');
+ylabel('abs(Hm)');
+title('MAGNITUDE RESPONSE');
+subplot(2,1,2);
+a=gca();
+a.x_location="origin";
+a.y_location="origin";
+plot2d(w/(2*%pi),phase_H);
+xlabel('Frequency in Radians');
+ylabel('<(H)');
+title('PHASE RESPONSE');
\ No newline at end of file |