Weighted Orthogonal Least Squares

版本 1.2.0.0 (24.3 KB) 作者: Andrey Sokolov
Fits line ax+by+c=0 to supplied points and their weights
1.3K 次下载
更新时间 2011/3/21

查看许可证

The function computes parameters a, b, and c of the weighted orthogonal least squares fit of line ax+by+c=0 to a set of 2D points with coordinates given by x and y and weights w.

n=100;
x=1:n;
y=2.5*x + (5+300./x).*randn(1,n);
plot(x,y,'.k')
hold on
w=1:n;
[a b c] = wols(x,y,w);
plot([0,n],[-c/b,-c/b - a/b*n],'-r','LineWidth',2)

引用格式

Andrey Sokolov (2024). Weighted Orthogonal Least Squares (https://www.mathworks.com/matlabcentral/fileexchange/28894-weighted-orthogonal-least-squares), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2010a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Least Squares 的更多信息

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.2.0.0

fixed a small typo in wols.pdf

1.0.0.0