blob: 465bb231d395d7e0d99e6eef10eca9017781b6c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Exa 8.8
clc;
clear;
close;
// Given data
Y= 3;// Positive Y-peaks in pattern
X= 2;// Positive X-peaks in pattern
// Ratio of frequencies of vertical and horizontal signals
// f_y/f_x= omega_y/omega_x = Y/X
R= Y/X;//Ratio of frequencies
disp(R,"Ratio of frequencies of vertical and horizontal signals");
|