I have a problem. I need to iterate through every element in an n-dimensional matrix in MATLAB. The problem is, I don't know how to do this for an arbitrary number of dimensions. I know I can say
for i = 1:size(m,1)
for j = 1:size(m,2)
for k = 1:size(m,3)
and so on, but is there a way to do it for an arbitrary number of dimensions?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…