Display time as Day, Month Year
    4 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    Madison
 am 25 Jul. 2023
  
    
    
    
    
    Kommentiert: Star Strider
      
      
 am 25 Jul. 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 Kommentar
  Dyuman Joshi
      
      
 am 25 Jul. 2023
				How are you reading it?
Also, can you attach your data file? Use the paperclip button to do so.
Akzeptierte Antwort
  Star Strider
      
      
 am 25 Jul. 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 Kommentare
Weitere Antworten (0)
Siehe auch
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!


