for each loop take the increasing position of a vector matlab?

1 vue (au cours des 30 derniers jours)
DulceEien
DulceEien le 9 Août 2021
Modifié(e) : DulceEien le 9 Août 2021
If I have a vector L = [4;5;6] and then a for loop
where x = [11;12;13;14;15]
could I take for each loop the increasing position of L? for example for the first iteration L = 4, the second interation L = 5
for i=1:lenght(x)
if x(i) <(0.01*L)
extent(i) = 'A';
end
end

Réponse acceptée

Adam Danz
Adam Danz le 9 Août 2021
Modifié(e) : Adam Danz le 9 Août 2021
The length of L would need to equal the length of x or it could be longer than x, but not shorter.
for i=1:lenght(x)
if x(i) <(0.01*L(i))
% ^^^ add this
extent(i) = 'A';
end
end
--or--
This version works for any length of x
L = 3;
% ^^^^ add this
for i=1:lenght(x)
if x(i) <(0.01*(L+i))
% ^^^^^ add this
extent(i) = 'A';
end
end
  1 commentaire
DulceEien
DulceEien le 9 Août 2021
Modifié(e) : DulceEien le 9 Août 2021
thank you for the answer, I will add L with the same length

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical 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