Index exceeds matrix dimensions error
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
mohamad mohamad
am 10 Dez. 2014
Kommentiert: Image Analyst
am 10 Dez. 2014
hi i was running this simple code,but i got this error,any idea how to fix it?
L = 140; % Length of signal
NFFT = 2^nextpow2(L); % Next power of 2 from length of y
YY = fft(rawdata,NFFT)/L;
((((((((((Index exceeds matrix dimensions.))))))))
Error in Untitled2 (line 11)
YY = fft(rawdata,NFFT)/L;
4 Kommentare
Star Strider
am 10 Dez. 2014
Next step:
In the Command Window, type
which fft -all
after the error.
I get 6 answers, all in: C:\Program Files\MATLAB\.
Akzeptierte Antwort
Image Analyst
am 10 Dez. 2014
How can you take 256 samples from an array with 140 samples? Maybe you need to pad it with zeros or something
newArray = [oldArray, zeros(1, NFFT - length(oldArray))];
6 Kommentare
Image Analyst
am 10 Dez. 2014
OK, glad it works, though I don't know why since the help for fft() said that it would do that padding for you.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!