I gathered vibration signal data which is in *.txt format (volts-time).How can I compute the FFT directly using *.txt file in MAT LAB or in LAB VIEW.Hereby my data file attached.
As discussed in link below you can apply FFT to your data set.
For simplicity regarding your data set,
Just load your data to Matlab environment using import tab or by "dlmread".
The first requirement for FFT is that there is no data gap (missing data).
Now load your volts value in e.g. X variable considering time intervals are equal.
Then follow the link mentioned below to perform FFT using Y = fft(X).
or
simply use [pxx,w] = periodogram(X);
plot(w,10*log10(pxx));
to see any periodicity is present in your data set or not.
Thanks
http://in.mathworks.com/help/matlab/ref/fft.html?requestedDomain=in.mathworks.com
I would edit your text file to make your headers on a single line without spaces. As a general rule, things are easier that way.
e.g.,
Time ==> time_s
(s)
Then I would import your .txt file into Matlab directly using the 'importadata' function:
filename = 'vibrational signal data.txt';
delimiterIn = ' ';
headerlinesIn = 1;
A = importdata(filename,delimiterIn,headerlinesIn);
Then I would apply a FFT to your function on 'channel_a', as stated above.
https://www.mathworks.com/help/matlab/ref/importdata.html
02 April 2016 5,822 2 View
What may be the reason if I am getting higher mass (calculated mass 420.60 & experimentally 447) in mass spectrometry?
12 November 2015 6,329 8 View
Hiiiii everyone! I have an enquiry on statistical analysis. I was looking for many forum and it's still cannot solve my problem. I want to compare means of two groups of data but only with two...
03 March 2021 8,796 3 View
I am on the lookout for the Enhanced Yellow Fluorescent Protein (Aequorea victoria) DNA sequence. Does anyone know where I can find it? Thank you in advance
03 March 2021 3,568 1 View
Hi, I want to start testing pitfall trap to obtain ants samples, but I need to conduct molecular analysis on those insects. So, what kind of fluid can I use? Ethanol expires too early and I need...
03 March 2021 5,978 5 View
What's the best way to measure growth rates in House sparrow chicks from day 2 to day 10? Since, the growth curve from day 2 to 10 won't be like the "Logistic curve" it might not follow logistic...
03 March 2021 1,401 3 View
I have conducted and published a systematic review and meta-analysis research with the topic related to public health and health pomotion (protocol was registed in PROSPERO). Now we want to...
03 March 2021 8,920 3 View
dear community, my model is based feature extraction from non stationary signals using discrete Wavelet Transform and then using statistical features then machine learning classifiers in order to...
03 March 2021 6,994 5 View
I just wanted to check if I need to run a linear regression separately if I am using PROCESS MACRO to run mediation analysis. Thank you.
02 March 2021 4,359 3 View
If the detection range is in ng/ml but the reference range is in ug/ml for a molecule or protein in serum or plasma .how to dilute and what is the initial volume to be taken for quantitative analysis
02 March 2021 7,670 3 View
Is There Any Feasible Method To Test The Efficiency Of Fluorescent Compounds Other Than UV Spectrometers ? Suggestions Would Be Appreciated !
02 March 2021 5,785 3 View
Hi, I am trying to construct a multi-layer fibril structure from a single layer in PyMol by translating the layer along the fibril axis. For now, I am able to use the Translate command in PyMol...
02 March 2021 4,569 4 View