I have daily data from 1969 to 2018. I want to remove the rows corresponding to 29-02 day from the matrix. How should I proceed?

1 Ansicht (letzte 30 Tage)
I have daily data from 1969 to 2018. I want to remove the rows corresponding to 29-02 day from the matrix. How should I proceed?. Is there any in built function for this?

Akzeptierte Antwort

Rik
Rik am 13 Mär. 2020
[num,txt]=xlsread('Sample.xlsx');
t=datetime(txt);
L=day(t)==29 & month(t)==2;
num(L,:)=[];
t(L,:)=[];

Weitere Antworten (1)

Alex Mcaulley
Alex Mcaulley am 13 Mär. 2020
Bearbeitet: Alex Mcaulley am 13 Mär. 2020
Another option:
[~,~,raw] = xlsread('sample.xlsx');
raw(contains(raw(:,1),'29/02'),:) = [];
  1 Kommentar
Subhra Maity
Subhra Maity am 15 Mär. 2020
Bearbeitet: Subhra Maity am 15 Mär. 2020
thanks.. it also does the same. only '29/02' should be changed to '29-02' as per the date format in excel file. :)

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

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

Start Hunting!

Translated by