Effacer les filtres
Effacer les filtres

How to compute frequency and amplitude from a text file?

1 vue (au cours des 30 derniers jours)
Akshat Shrivastava
Akshat Shrivastava le 2 Août 2018
Commenté : Bob Thompson le 3 Août 2018
So far, i have used this code to plot the text file:
[fid,msg] = fopen('Rose.txt','rt');
assert(fid>=3,msg)
C = textscan(fid, '%f%f', 'CommentStyle','#', 'CollectOutput',true);
fclose(fid);
M = C{1};
After this i wish to calculate frequency and amplitude for a duration of 5 seconds at different intervals. Can someone please help me out with the code in order to do so? Thanks in advance :)
  5 commentaires
Akshat Shrivastava
Akshat Shrivastava le 3 Août 2018
Hi, I want to tell you that the plot that i get of my text file is not a sine or a cos waveform. Also, i do not know my sampling frequency. Would that link still be useful?`
Bob Thompson
Bob Thompson le 3 Août 2018
Does your data have some kind of time based oscillation? If so then you can use an FFT tool. As for sampling frequency, there should be some way of finding out, but you can always just pick something and get relative results based on the frequency you picked.
Yes, the link is still useful.

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur MATLAB dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by