diff options
Diffstat (limited to '3830/CH4/EX4.8/Ex4_8.sce')
-rw-r--r-- | 3830/CH4/EX4.8/Ex4_8.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3830/CH4/EX4.8/Ex4_8.sce b/3830/CH4/EX4.8/Ex4_8.sce new file mode 100644 index 000000000..df37267b9 --- /dev/null +++ b/3830/CH4/EX4.8/Ex4_8.sce @@ -0,0 +1,15 @@ +// Exa 4.8
+
+clc;
+clear;
+
+// Given
+
+// Referring closed Lissajous pattern as shown in fig.
+wx = 2; // no of positive x-peak
+wy = 3; // no of positive y-peak
+
+// Solution
+
+fy_fx = wy/wx ;
+printf(' Ratio of frequencies between vertical and horizontal signals = %.1f \n',fy_fx);
|