您的位置:首页 > 财经 > 金融 > 怎么自己制作一个好的网站_阳江58同城招聘网最新招聘_旺道seo系统_搜索引擎优化岗位

怎么自己制作一个好的网站_阳江58同城招聘网最新招聘_旺道seo系统_搜索引擎优化岗位

2024/11/18 11:15:05 来源:https://blog.csdn.net/weixin_54793960/article/details/142769289  浏览:    关键词:怎么自己制作一个好的网站_阳江58同城招聘网最新招聘_旺道seo系统_搜索引擎优化岗位
怎么自己制作一个好的网站_阳江58同城招聘网最新招聘_旺道seo系统_搜索引擎优化岗位

文章目录

    • 问题
    • MATLAB代码
    • 验证数据1
    • 验证数据2

问题

已知有系列含有噪声的数据(x , y)用最小二乘法计算m和b。(y=mx+b)

MATLAB代码

disp('This promgram perform a leastsquares fit of an');
disp('input data set to a straight line.');
n_points = input('Enter the number of input [x y] points:');
for ii = 1:n_pointstemp = input('Enter [x y] pair:');x(ii) = temp(1);y(ii) = temp(2);
end
sum_x = 0;
sum_y = 0;
sum_x2 = 0;
sum_xy = 0;
for ii = 1:n_pointssum_x = sum_x + x(ii);sum_y = sum_y + y(ii);sum_x2 = sum_x2 + x(ii)^2;sum_xy = sum_xy + x(ii) * y(ii);
end
x_bar = sum_x / n_points;
y_bar = sum_y / n_points;
slope = (sum_xy - sum_x * y_bar) / (sum_x2 - sum_x * x_bar);
y_int = y_bar - slope * x_bar;
disp('Regression coefficients for the leastsquares line:');
fprintf('Slope(m) = %8.3f\n',slope);
fprintf('Intercept(b) = %8.3f\n',y_int);
fprintf('No of points = %8d\n',n_points);
plot(x,y,'bo');
hold on;
xmin = min(x);
xmax = max(x);
ymin = slope * xmin + y_int;
ymax = slope * xmax + y_int;
plot([xmin xmax],[ymin ymax],'r','LineWidth',2);
hold off;
title('\bfLeastSquaresFit');
xlabel('\bf\itx');
ylabel('\bf\ity');
legend('Input data','Fitted line');
grid on;

验证数据1

[1.1 1.1]
[2.2 2.2]
[3.3 3.3]
[4.4 4.4]
[5.5 5.5]
[6.6 6.6]
[7.7 7.7]

在这里插入图片描述

在这里插入图片描述

验证数据2

[1.1 1.01]
[2.2 2.30]
[3.3 3.05]
[4.4 4.28]
[5.5 5.75]
[6.6 6.48]
[7.7 7.84]

在这里插入图片描述
在这里插入图片描述

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com