Filing/interpolation of irregular sample time series multivariate data
    10 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    B
 am 7 Dez. 2019
  
    
    
    
    
    Kommentiert: Star Strider
      
      
 am 7 Dez. 2019
            Hello,
I have an irregular time series sample data with multiple variables, and I would like to fill in the gaps (filling or interpolation) to get daily data for all the variables at one interpolation. The data is a attached.
Can anyone be of help, please?
Ed
0 Kommentare
Akzeptierte Antwort
  Star Strider
      
      
 am 7 Dez. 2019
        Try this: 
T1 = readtable('Edward Bam Eddata.txt');
T2 = table2timetable(T1, 'RowTimes','TimeStamp');
T3 = retime(T2, 'daily','linear');                          % Desired Result
Avoiding the intermediate steps using readtimetable is also an option.  I chose to do the intermediate steps so that I could see them, since I was unfamiliar with your file.  
4 Kommentare
Weitere Antworten (1)
  shadman khan
 am 7 Dez. 2019
        firstly i am not an exxpert
but simple help for you is :cftool matlab
it has multiple variable regression
Siehe auch
Kategorien
				Mehr zu Logical 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!


