How to get the one by one value of array using variable?
1 次查看(过去 30 天)
显示 更早的评论
node=[9 44 5];
[m,n]=size(node);
for i=1:m
for j=1:n
%
end
end
i want to get one by one value of array in a variable and then perform some condition on that value, after that next value should be come into variable, how it is possibe?
0 个评论
采纳的回答
Yongjian Feng
2021-7-1
Hello Aqeel,
You want this, right?
node=[9 44 5];
[m,n]=size(node);
for i=1:m
for j=1:n
tmpVar = node(m, n);
end
end
Thanks,
Yongjian
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!