blob: df37267b9e26668aea60b03ae51850b602d35e39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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);
|