Interpolate to monthly time series
    6 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    Sarah Yun
 il 27 Dic 2019
  
    
    
    
    
    Commentato: Walter Roberson
      
      
 il 27 Dic 2019
            Hello,
I have a timeseries of time against temperature - smallest unit of time is hour
I want to interpolate so the month is the smallest unit of time.
How should I use this function to do this?
vq = interp1( x , v , xq ) 
Thank you
0 Commenti
Risposta accettata
  Walter Roberson
      
      
 il 27 Dic 2019
        We recommend converting your timeseries to a timetable() object and then using retime()
2 Commenti
  Walter Roberson
      
      
 il 27 Dic 2019
				https://www.mathworks.com/help/matlab/ref/timetable2table.html adds the times back in as a column in the table. Or you can
timeseries(YourTimeTable{:,:}, YourTimeTable.Properties.RowTimes)
to create a timeseries object.
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Time Series 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!

