How to fix this error?

1 Ansicht (letzte 30 Tage)
Nisar Ahmed
Nisar Ahmed am 9 Nov. 2020
Kommentiert: Nisar Ahmed am 9 Nov. 2020
Hi
Dear all,
can you please help me to fix this error?
Index exceeds the number of array elements (9).
Error in Wavelet_freq (line 170)
figure(5), plot(wav10_30_50); ylabel('Amplitude'); xlabel('Time (s)');
What this error means?
  1 Kommentar
Nisar Ahmed
Nisar Ahmed am 9 Nov. 2020
I am simply loading and plotting this wavelet.
[wav10_30_50] = ReadRSS('wav10_30_50.rss');

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

KALYAN ACHARJYA
KALYAN ACHARJYA am 9 Nov. 2020
Bearbeitet: KALYAN ACHARJYA am 9 Nov. 2020
What this error means?
Index exceeds the number of array elements (9).
Example:
Suppose, an array example A=[2 3 4 5 6 7 8]; Here the array A length is 7. Now if you try to acess the array indices more than 7, then MATLAB reflects such error, as indices value exceeds array length.
for j=1:10
B=A(j)..
end
Till j=7, there is no issue, once the iteration reaches j=8 and try to access A(8) here j=8, as A has 7 array elements only, then it shows such error. Please check in your code, such issue may arrised.
  1 Kommentar
Nisar Ahmed
Nisar Ahmed am 9 Nov. 2020
Right Kalyan,
But see, I just loaded wav(10_30_50) and the length of wav is 5301.
[wav10_30_50] = ReadRSS('wav10_30_50.rss');
and then I hvae plotted as
plot(wav10_30_50); ylabel('Amplitude'); xlabel('Time (s)');
In that case why this error is appearing?

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by