I want to add a line of best fit to my plot using the polyfit function.

12 次查看(过去 30 天)
%Plot graph 1
figure(2); clf
plot(xL(A),anglex,'ko');

采纳的回答

Jon
Jon 2019-8-15
编辑:Jon 2019-8-15
You can do something like this
p = polyfit(xL(A),anglex,1);
anglexFit = polyval(p,xL(A));
plot(xL(A),anglex,'ko',xL(A),anglexFit)
I'm assuming your variable A, is a vector of indices that give the elements of xL that you want plotted and fit.
Also you can enter the command doc polyfit on the command line and it will bring up the documentation for polyfit, which has some nice examples of plotting best fit lines.

更多回答(1 个)

Image Analyst
Image Analyst 2019-8-16
See attached demo of polyfit where I fit a line and a dubic to some data.
Attach your data and show a screenshot of it plotted if you want anymore help.

类别

Help CenterFile Exchange 中查找有关 Interpolation 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by