Index in position 2 exceeds array bounds (must not exceed 1).

3 Ansichten (letzte 30 Tage)
Chaudhary P Patel
Chaudhary P Patel am 19 Aug. 2019
Beantwortet: Chris am 19 Aug. 2019
for elem=1:ne %Calling elements
for i=1:4
for j=1:4
if (elem(i,4)==1)
k=eval(['k',num2str(elem),'l']);
else
k=eval(['k',num2str(elem),'l']);
KG(i,j)=k(i,j)+KG(i,j);
end
end
end
end

Antworten (1)

Chris
Chris am 19 Aug. 2019
Your first line is making "elem" a scalor but the if test is using it as a martix; this does not work.

Kategorien

Mehr zu Resizing and Reshaping Matrices finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by