start index in matrix with zero
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
how i start indexing in mAtrix from 0?
for M=1:1:m-1
A1=A*x2(:,M);
A2(:,M)=round(mod(A1,N));
end
for M=1:m-1
ss=A2(1,M)
jj=A2(2,M)
a4(ss,jj)=A2(3,M);
end
index for a4 come 0 .i cant change it. how i use zero index?
0 Kommentare
Akzeptierte Antwort
Matt J
am 5 Mai 2014
You could use this customized matrix type that uses zero-based indexing
http://www.mathworks.com/matlabcentral/fileexchange/33301-zero-based-indexable-arrays--oop-exercise-
but I don't really recommend it. Why not just do
a4(ss+1,jj+1)=A2(3,M);
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Matrix Indexing 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!