Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Getting an "index out of bounds error" in my Matlab program. Help.
조회 수: 1 (최근 30일)
이전 댓글 표시
ex(1)=lx/J %%first i term in ex matrix
ex(2)=mx/J %%second j term in ex matrix
ex(3)=nx/J %%third k term in ex matrix
for i=1:8
for j=1:27
N_matrix(i,j)=0;
end
end
for i=1:9
N_matrix(1,i)=N(rem(i-1,3)+1)*ex(i)/3;(ERROR HERE)
end
Attempted to access ex(4); index out of bounds because numel(ex)=3.
Error in practisee2 (line 227)
N_matrix(1,i)=N(rem(i-1,3)+1)*ex(i)/3
댓글 수: 1
KSSV
2018년 10월 16일
@ Virajan Verma It is not fair to ask every step a question in forum. I suggest/ advice you to read basic tutorials of MATLAB which is very easy
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!