フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Index exceeds matrix dimensions

2 ビュー (過去 30 日間)
Maryal
Maryal 2017 年 12 月 2 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
I have written this code but keep getting the error "Index exceeds matrix dimensions"
x=5
N = 30
i = 1 : N;
k = 5-i+(N-3);
y = 2 .* k(1:N-2) .* x(i(1:N-2)+1) + 3 .* x(i(1:N-2)-1);

回答 (1 件)

Walter Roberson
Walter Roberson 2017 年 12 月 2 日
Your original equation
y=2k*x(i+1)+3*x(i-1)
implies that x is a vector being indexed at i+1 and i-1.
Your current code has
x = 5;
which is a scalar. You cannot index a scalar at anything other than [] or 1 or true or false.
If your original code was intended to represent multiplication rather than indexing then:
y = 2 .* k(1:N-2) .* x .* (i(1:N-2)+1) + 3 .* x .* (i(1:N-2)-1);

この質問は閉じられています。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by