Filter löschen
Filter löschen

datetime with certain number of rows

2 Ansichten (letzte 30 Tage)
AA
AA am 9 Apr. 2020
Kommentiert: Peter Perkins am 14 Apr. 2020
I have a datetime array with 1000 rows.
I want to extend it to 1200 rows. The last 200 rows should be just a repetition of the last date.
How can I do this?
  2 Kommentare
Samuele Sandrini
Samuele Sandrini am 9 Apr. 2020
Bearbeitet: Samuele Sandrini am 9 Apr. 2020
We can do like this (is a little example):
A=datetime('now') %i create a variable datetime
A(2:201,1)=A(end,1)
Peter Perkins
Peter Perkins am 14 Apr. 2020
If you have a (column) vector, even simpler: A(end:(end+200)) = A(end)

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu Dates and Time finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by