Index location of certain dates with find and a loop

2 vues (au cours des 30 derniers jours)
Laura Szczyrba
Laura Szczyrba le 24 Août 2022
Commenté : David Hill le 25 Août 2022
Trying to create a simple loop that identifies the index locations where each particular date (TargetDates) matches the date in a larger array of dates (t_list)
t_list --> 1924x1 double
TargetDates --> 267x1 double
----------------------------------------------------------------------------
locs= zeros(length(TargetDates),1); % initialize array of locations, size 267x1
for ii = 1:size(TargetDates,1) % for each date listed in TargetDates (1:267)
locs(ii) = find(round(t_list,6) == TargetDates(ii,1)); % find the index location where rounded t_list matches the date in TargetDates
end
--------------------------------------------------------------------------------
I receive the error: Unable to perform assignment because the left and right sides have a different number of elements.
I am sure it is a silly error that I am just not seeing. Thanks in advance for any advice!

Réponses (2)

David Hill
David Hill le 24 Août 2022
[~,idx]=ismember(TargetDates,t_list);%only provides first occurance
  2 commentaires
Laura Szczyrba
Laura Szczyrba le 25 Août 2022
Modifié(e) : Laura Szczyrba le 25 Août 2022
I need the location where all TargetDates (each date in TargetDates) match t_list, not just the first occurance, which is why I was setting up the loop!
David Hill
David Hill le 25 Août 2022
You can see without a good description and sample data set we are guessing what you want or making wrong assumptions.

Connectez-vous pour commenter.


VBBV
VBBV le 25 Août 2022
locs= zeros(length(TargetDates),length(t_list)); % change preallocated array size
Change the preAllocated size of locs
locs(ii,:) = find(round(t_list,6) == TargetDates(ii,1)); % find returns a vector of indices that match the condition
As you are comparing the whole t_list with TargetDates you can do above
  3 commentaires
VBBV
VBBV le 25 Août 2022
for ii = 1:size(TargetDates,1)
Use the above in for loop. What is size of TargetDates?
VBBV
VBBV le 25 Août 2022
It seems you are using DateNumber

Connectez-vous pour commenter.

Catégories

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

Produits


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by