Index location of certain dates with find and a loop

2 views (last 30 days)
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!

Answers (2)

David Hill
David Hill on 24 Aug 2022
[~,idx]=ismember(TargetDates,t_list);%only provides first occurance
  2 Comments
Laura Szczyrba
Laura Szczyrba on 25 Aug 2022
Edited: Laura Szczyrba on 25 Aug 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 on 25 Aug 2022
You can see without a good description and sample data set we are guessing what you want or making wrong assumptions.

Sign in to comment.


VBBV
VBBV on 25 Aug 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 Comments
VBBV
VBBV on 25 Aug 2022
for ii = 1:size(TargetDates,1)
Use the above in for loop. What is size of TargetDates?

Sign in to comment.

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Products


Release

R2021a

Community Treasure Hunt

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

Start Hunting!