diff options
Diffstat (limited to '752/CH18/EX18.3.1/18_3_1.sce')
-rwxr-xr-x | 752/CH18/EX18.3.1/18_3_1.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/752/CH18/EX18.3.1/18_3_1.sce b/752/CH18/EX18.3.1/18_3_1.sce new file mode 100755 index 000000000..03dfc4d47 --- /dev/null +++ b/752/CH18/EX18.3.1/18_3_1.sce @@ -0,0 +1,14 @@ +clc;
+//page no 693
+//prob no. 18.3.1
+a=(4/3);//aspect ratio
+N=525;//no. of line periods per frame
+Ns=40;//no. of suppressed lines
+//Determination of no. of pixel periods in line period
+Nv=N-Ns;
+disp('lines',Nv,'The no. of pixel periods in line period is ');
+//Determination of picture height and width
+Nh=a*Nv;
+disp('pixels',Nh,'The picture height is');
+Nl=(Nh/0.835);
+disp('pixels',Nl,'The picture length is');
\ No newline at end of file |