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!
