Index location of certain dates with find and a loop

2 visualizaciones (últimos 30 días)
Laura Szczyrba
Laura Szczyrba el 24 de Ag. de 2022
Comentada: David Hill el 25 de Ag. de 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!

Respuestas (2)

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

Iniciar sesión para comentar.


VBBV
VBBV el 25 de Ag. de 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 comentarios
VBBV
VBBV el 25 de Ag. de 2022
for ii = 1:size(TargetDates,1)
Use the above in for loop. What is size of TargetDates?
VBBV
VBBV el 25 de Ag. de 2022
It seems you are using DateNumber

Iniciar sesión para comentar.

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by