Performing Fourier Transform with csv file; "error using csvread"
이전 댓글 표시
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
Kautuk Raj
2023년 6월 27일
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.
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Discrete Fourier and Cosine Transforms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
