hello I have to dates 17/04/2007 and 15/12/2007 and i need the hourly data for these date from file of 8760?
    2 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    ABDULLA RAHIL
 el 29 de Ag. de 2016
  
    
    
    
    
    Comentada: Star Strider
      
      
 el 29 de Ag. de 2016
            hello, I have to dates 17/04/2007 and 15/12/2007 and I need the hourly data for these date from a file of 8760? i mean hourly data of those dates?
0 comentarios
Respuesta aceptada
  Star Strider
      
      
 el 29 de Ag. de 2016
        See if this does what you want:
DN = datenum({'17/04/2007'; '15/12/2007'}, 'dd/mm/yyyy');
Hourly = [DN(1) : (1/24) : DN(2)]';                                 % Date number Vector
HourlyStr = datestr(Hourly, 'dd/mm/yyyy HH');                       % Date String Character Array
2 comentarios
  Star Strider
      
      
 el 29 de Ag. de 2016
				My pleasure.
I need to know the format of your data, and what you want as the result. It would help if you upload (attach) your data as a .mat file so I have it to work with.
Más respuestas (0)
Ver también
Categorías
				Más información sobre Dates and Time en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!