Effacer les filtres
Effacer les filtres

char array comparison

3 vues (au cours des 30 derniers jours)
Sam Da
Sam Da le 15 Mar 2011
I have a large char array and these are dates so the array has elements as: 20070801 20070802 20070803 etc.
This array shows up as 100x8 in the workspace. I want to get all the dates which are less than 20070915. How do I use the 'find' function to achieve this or any other straight forward method?

Réponse acceptée

Paulo Silva
Paulo Silva le 15 Mar 2011
a=['20070801';'20070802';'20070803']; %some date values
b=20070802; %value to compare
a(find(str2num(a)<b),:) %date values older than the compared value

Plus de réponses (1)

Walter Roberson
Walter Roberson le 15 Mar 2011
You could datenum() the dates and compare them to datenum() of your search date.

Catégories

En savoir plus sur Dates and Time 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