Borrar filtros
Borrar filtros

How to compute frequency and amplitude from a text file?

1 visualización (últimos 30 días)
Akshat Shrivastava
Akshat Shrivastava el 2 de Ag. de 2018
Comentada: Bob Thompson el 3 de Ag. de 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 comentarios
Akshat Shrivastava
Akshat Shrivastava el 3 de Ag. de 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 el 3 de Ag. de 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.

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by