blob: 068182b3e078c8c12ccf615e76c40e9536ae029b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Exa 4.9
clc;
clear;
// Given
// Referring Lissajous pattern shown in figure
wx = 1 ; // Sum of x-peak pattern
wy = 2.5; // sum of y-peak pattern
fx = 3; // frequency of horizontal signal
X = wy/wx ; // X is ratio of fy/fx
// Therefore, fy = 2.5*fx
printf(' Frequency of vertical signal = %.1f kHz \n ',X*fx);
// The answer provided in the textbook is wrong
|