Performing Fourier Transform with csv file; "error using csvread"
Show older comments
I am trying to find the wavelength of a laser. The data I have is the time and the voltage. I have a 33607 x 2 matrix as I recorded the data using 1kHz. My lab manual states:
"Your goal is to find the frequency induced by the mirror’s movement, which will tell you time between peaks and therefore the light wavelength. The vibrations physically must be oscillatory – they can’t produce a net shift over long periods of time. Therefore they can be avoided in the analysis by averaging them out, which decreases the error in frequency linearly. The 1st way to do this is simply count the peaks (or zero crossings) and average that over the time. The 2nd way (more accurate and can be faster) is to take the real discrete fourier transform (FFT) of the signal, cut off the spurious high frequencies (these come from the detector, not the system) and calculate the weighted average over the remaining frequencies"
So I am attempting to perform a FFT on the data using matlab.
I imported the data through a csv file. But when I type : t = csvread('filename.csv'), matlab says " error using csvread, file not found".
I followed the steps to this video https://www.youtube.com/watch?v=cw9eoSzln_k&ab_channel=Study%26Tutor as well the following code taken from another post :
data = csvread('myfile.csv') ; % also have a look on readtable, xlsread
a = data(:,1) ; % acceleration
f = data(:,2) ; % frequency
t = ifft(f) ;
But am still getting the same error.
Any idea why I am getting this error?
1 Comment
Kautuk Raj
on 27 Jun 2023
If the file is located in a different folder than the one you are currently working in, you can change the current working directory in MATLAB to the folder where the file is located.
Accepted Answer
More Answers (0)
Categories
Find more on Discrete Fourier and Cosine Transforms in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!