How to combine two trendlines from two different plot?

I have array data. Let's say time, x, and y. They are all 117*1 array. Then i make plots. And then i add a trendline for each plot using polyfit.
aa=polyfit(time,x,1);
bb=polyval(aa,time);
figure
plot(time,x)
hold on
plot(time,bb)
cc=polyfit(time,y,1);
dd=polyval(cc,time);
figure
plot(time,y)
hold on
plot(time,dd)
So then i have 2 figures with 2 trendlines. I have a trouble about how to combine these two trendline in one figure. So that i can calculate the angle between the trendlines. Thank you..

 Respuesta aceptada

Birdman
Birdman el 6 de Feb. de 2018
Editada: Birdman el 6 de Feb. de 2018
One figure definition is enough.
aa=polyfit(time,x,1);
bb=polyval(aa,time);
figure
plot(time,x)
hold on
plot(time,bb)
cc=polyfit(time,y,1);
dd=polyval(cc,time);
plot(time,y)
plot(time,dd)

Más respuestas (0)

Categorías

Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 6 de Feb. de 2018

Editada:

el 6 de Feb. de 2018

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by