Effacer les filtres
Effacer les filtres

How to judge the duplicate value of the previous loop and the current loop in the loop

2 vues (au cours des 30 derniers jours)
a = [201101 201107 201201 201207 201301 201307 201401 201407 201501 201507]
for k = 1:2
if k =mod(k,2)==1
index =(1:5)
year = a(index)
else k = mod(k,2)==0
year = index =(2:6)
end
how can find repeat value a(index(2:5))
is any way to detect or find out the existence of these duplicate values

Réponses (1)

David Hill
David Hill le 4 Mai 2022
Not sure what you are asking. Of course there are going to be repeated values in the year rows. You need to explain better with an example.
a = [201101 201107 201201 201207 201301 201307 201401 201407 201501 201507]
for k = 1:2
if mod(k,2)==1
year(k,:) = a(1:5);
else
year(k,:) = a(2:6);
end
end
  1 commentaire
peter huang
peter huang le 5 Mai 2022
I mean. When I get data about the date in the department, I want to use one year and two months as the time unit of the data in the department, but when I read it, I often read the time of the previous year and two months repeatedly. I would like to ask if there is a way to detect whether this loop repeats the value of the last loop

Connectez-vous pour commenter.

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by