Determine frequency of signals

4 views (last 30 days)
Muhammad Mirza Murad
Muhammad Mirza Murad on 14 Jan 2022
Answered: Chunru on 14 Jan 2022
Hi, how do I determine the frequency of this signal?
I got this from a .mat file
x = load('signal1.mat');
plot(x.x);

Answers (1)

Chunru
Chunru on 14 Jan 2022
load signal1
fs = 1; % normalized freq
y = abs(fft(x));
L = length(y);
f = (0:round(L/2)-1)/L*fs;
p = y(1:round(L/2));
[pmax, imax] = max(p);
plot(f, p, 'b-', f(imax), pmax, 'r*')
fprintf('The freq: %f\n', f(imax))
The freq: 0.012195

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!