Azzera filtri
Azzera filtri

How to compute frequency and amplitude from a text file?

1 visualizzazione (ultimi 30 giorni)
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 Commenti
Akshat Shrivastava
Akshat Shrivastava il 3 Ago 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 il 3 Ago 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.

Accedi per commentare.

Risposte (0)

Categorie

Scopri di più su MATLAB in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by