fit the y=mx+c in time series
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Nurul Ain Basirah Zakaria
el 28 de Mzo. de 2021
Comentada: Star Strider
el 28 de Mzo. de 2021
Hi. I have 420x1 data of time series.
How can I fit y=mx+c line in the plotting?
0 comentarios
Respuestas (1)
Star Strider
el 28 de Mzo. de 2021
That could be a challenge.
dt = datetime('now')+days(1:10);
T1 = table(dt(:), rand(10,1)+(0.1:0.1:1).');
B = [day(T1.Var1) ones(size(T1.Var1))] \ T1.Var2;
LinFit = [day(T1.Var1) ones(size(T1.Var1))] * B;
figure
plot(T1.Var1, T1.Var2, 'p')
hold on
plot(T1.Var1, LinFit, '-r')
hold off
grid
Depending on the time series, the results could appear a bit unusual.
.
4 comentarios
Star Strider
el 28 de Mzo. de 2021
My pleasure!
Did I provide a meaningful solution?
If not, what do you want to do?
Ver también
Categorías
Más información sobre Graphics Object Programming 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!