How to get trendline equation for to graphs
7 views (last 30 days)
Show older comments
So i have made two plots on the same graph,and now i need trendline equtions for them both. I know how to get the trendlines themselfs and only one equation at a time,but i was wondering if there is a way for them both to be present at the same time? Because if i use tools->basic fitting then only one equation for one plot can be on the graph. Thanks
0 Comments
Accepted Answer
Florian
on 1 Mar 2016
Calculate the line fit variables in your code using polyfit: http://ch.mathworks.com/help/matlab/ref/polyfit.html
Using the parameters, calculate x and y values for each fit.
After plotting your points, use the command "hold on" to plot the other datapoints and all trendlines.
0 Comments
More Answers (0)
See Also
Categories
Find more on 2-D and 3-D Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!