フィルターのクリア

Linear Fit and Axes Labeling

6 ビュー (過去 30 日間)
Suyapa Gonzalez
Suyapa Gonzalez 2015 年 6 月 22 日
回答済み: Star Strider 2015 年 6 月 22 日
I've created a scatter plot, but I also want the linear fit of this plot. Is there a command for this. Also, how can I label both axes and add a title to the plot?

回答 (2 件)

Christiaan
Christiaan 2015 年 6 月 22 日
Dear Suyapa,
There are may possible ways to plot a linear fit in a scattered plot (with least squares for example). This is also called linear regression. Therefore in MATLAB you can use one of the linear regression tools.
You can have a look at the examples, and then I am sure you find one that suits your problem.
Kind regards, Christiaan

Star Strider
Star Strider 2015 年 6 月 22 日
There are several ways to do what you want. If you have the Statistics Toolbox, consider the lsline function.
Otherwise, consider polyfit (and polyval) with a first-degree polynomial:
b = polyfit(x, y, 1);
yf = polyval(b, x);
then plot it as:
figure(1)
scatter(x, y)
hold on
plot(x, yf)
hold off
title('Scatterplot of (x,y) data')
xlabel('x data')
ylabel('y data')
This works best if your x-data are ordered.
See the documentation for the plot function for other options.

カテゴリ

Help Center および File ExchangeLinear and Nonlinear Regression についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by