Display time as Day, Month Year
    4 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    Madison
 il 25 Lug 2023
  
    
    
    
    
    Commentato: Star Strider
      
      
 il 25 Lug 2023
            I'm trying to read my time data from an nc file in the format of (dd mm yy), but it looks like it's displaying the data as hours minutes and seconds maybe?
My time data looks like this 
  725889600 
  725976000 
  726062400 
  726148800 
  726235200 
  726321600 
  726408000 
  726494400 
  726580800 
  726667200 
  726753600 
  726840000 
  726926400 
  727012800 
  727099200 
  727185600 
  727272000 
  727358400 
  727444800 
  727531200 
1 Commento
  Dyuman Joshi
      
      
 il 25 Lug 2023
				How are you reading it?
Also, can you attach your data file? Use the paperclip button to do so.
Risposta accettata
  Star Strider
      
      
 il 25 Lug 2023
        I experimented with a few conversions, and 'posixtime' is the only one that producs realistic results.  
Try this — 
TN = [725889600 
  725976000 
  726062400 
  726148800 
  726235200 
  726321600 
  726408000 
  726494400 
  726580800 
  726667200 
  726753600 
  726840000 
  726926400 
  727012800 
  727099200 
  727185600 
  727272000 
  727358400 
  727444800 
  727531200 ];
DT = datetime(TN, 'ConvertFrom','posixtime', 'Format','dd MM yyyy')
What are the expected years, months, and days?  
2 Commenti
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Dates and Time 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!


