How to get the one by one value of array using variable?

1 vue (au cours des 30 derniers jours)
Aqeel Awan
Aqeel Awan le 1 Juil 2021
Commenté : Aqeel Awan le 2 Juil 2021
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?

Réponse acceptée

Yongjian Feng
Yongjian Feng le 1 Juil 2021
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

Plus de réponses (0)

Catégories

En savoir plus sur Resizing and Reshaping Matrices dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by