How to fix "Index exceeds array bounds"?
이전 댓글 표시
Trying to come up with a convolution function without using "conv" but i run into the error of index exceeds array bounds. This is my code so far:
x=[1,2,3,4,5,6];
h=[4,5,6];
X=[x,zeros(1,length(h)-1)];
H=[h,zeros(1,length(x)-1)];
output=length(x)+(length(h)-1);
for i=1:output
new(i)=sum(x(1:i).*fliplr(h(1:i)));
end
disp(output);
disp(new);
I get a correct value for X and H as well as the output so i am thinking my problem is in my for loop. The thought process behind that is I will multiply matrix x by flipped(k) and take the sum of that until the for loop ends.
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!