diff options
Diffstat (limited to '752/CH18/EX18.3.2/18_3_2.sce')
-rwxr-xr-x | 752/CH18/EX18.3.2/18_3_2.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/752/CH18/EX18.3.2/18_3_2.sce b/752/CH18/EX18.3.2/18_3_2.sce new file mode 100755 index 000000000..63a447b15 --- /dev/null +++ b/752/CH18/EX18.3.2/18_3_2.sce @@ -0,0 +1,13 @@ +clc;
+//page no 694
+//prob no. 18.3.2
+//A TV system with
+N=525;P=30;
+//Determination of horizontal and vertical synchhronization freq.
+fh=N*P;
+disp('Hz',fh,'the horizontal freq. is ');
+fv=2*P;
+disp('Hz',fv,'the vertical freq. is ');
+//Determination of time reqd to scan one line
+Th=(1/fh);
+disp('sec',Th,'the time reqd to scan one line is ');
|