Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Got an indexing error here. Please recommend an answer.

조회 수: 1 (최근 30일)
Virajan Verma
Virajan Verma 2018년 10월 16일
마감: MATLAB Answer Bot 2021년 8월 20일
for i=1:9
N_matrix(1,i)=N(rem(i,3))*ex(i)/3; %(ERROR HERE)
end
Attempted to access N(0); index must be a positive integer or logical.
Error in practisee2 (line 227)
N_matrix(1,i+1)=N(rem(i+1,3))*ex(i+1)/3;
  댓글 수: 10
KSSV
KSSV 2018년 10월 16일
N is a matrix formed from Shape functions. It is related FEM (Finite Element Method) stuff.
madhan ravi
madhan ravi 2018년 10월 16일
thank you @KSSV

답변 (1개)

Walter Roberson
Walter Roberson 2018년 10월 16일
N_matrix(1,i)=N(rem(i-1,3)+1)*ex(i)/3; %(ERROR HERE)
  댓글 수: 3
KSSV
KSSV 2018년 10월 16일
Will this expression will result in the same output ..You try....play with values see the output..make a note..change the values....compare the output...remember you are learning..this is the way to learn.
Walter Roberson
Walter Roberson 2018년 10월 16일
"Will this expression will result in the same output??"
No. Your original expression outputs an error message, whereas my proposed expression will execute.

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by