Weighted Orthogonal Least Squares
Version 1.2.0.0 (24.3 KB) by
Andrey Sokolov
Fits line ax+by+c=0 to supplied points and their weights
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)
Cite As
Andrey Sokolov (2026). Weighted Orthogonal Least Squares (https://ch.mathworks.com/matlabcentral/fileexchange/28894-weighted-orthogonal-least-squares), MATLAB Central File Exchange. Retrieved .
MATLAB Release Compatibility
Created with
R2010a
Compatible with any release
Platform Compatibility
Windows macOS LinuxCategories
Find more on Least Squares in Help Center and MATLAB Answers
Tags
Acknowledgements
Inspired: Smoothing 2D Contours Using Local Regression Lines
Discover Live Editor
Create scripts with code, output, and formatted text in a single executable document.
