build YYYYMMDD instead of YYYYMD, for YY and DD derived from one-digit outputs from datevec()
    6 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
Hello. I would like to produce a date (for instance: 7th of January 2014) string looking like '20140107' for representing YYYYMMDD, but a one digit M and D currently results in the unwanted string '201417', which is only YYYYMD.
[Y, M, D, H, MN, S] = datevec(now);
dateString =[num2str(Y),num2str(M),num2str(D)];
0 Commenti
Risposta accettata
  Phillip
      
 il 30 Apr 2014
        Hi
dateString = datestr(now,'yyyymmdd')
Type
help datestr
to get more information
Regards, Phillip
0 Commenti
Più risposte (1)
  Mischa Kim
    
      
 il 30 Apr 2014
        
      Modificato: Mischa Kim
    
      
 il 30 Apr 2014
  
      Marco, how about
 dateString = datestr(now,'yyyymmdd');
Vedere anche
Categorie
				Scopri di più su Detection, Range and Doppler Estimation in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


