date to string conversion
Ältere Kommentare anzeigen
when using the following code s value is prited as '00000'
Help me what the problem is.. dtntm field has date and time
aa=(DD_SlantSmoothTEC(j).dtntm);
aaa=datestr(aa);
s=strcat(aaa(1:2),aaa(4:6));
fn1=sprintf('%s%s','DD-VTEC Vs UT,HYDE-IISC PRN PAIR DAY ',s);
title(fn1);
1 Kommentar
Stephen23
am 27 Dez. 2021
Do NOT use the outdated, deprecated, imprecise DATESTR, DATEVEC, or DATENUM.
Akzeptierte Antwort
Weitere Antworten (1)
aa = datetime('now') % or aa = now() for double representation
s = datestr(aa,'ddmmm')
fn1 = sprintf('%s%s','DD-VTEC Vs UT,HYDE-IISC PRN PAIR DAY ',s)
Kategorien
Mehr zu Dates and Time finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!