最小二乘法 Resources

Showing items tagged with "最小二乘法"

This MATLAB program implements two distinct localization algorithms: standard least squares method and weighted least squares method, providing implementation details and practical applications.

MATLAB 199 views Tagged

This MATLAB program implements ellipse curve fitting using the least squares method through generalized matrix eigenvalue and eigenvector computation. The input variables x and y represent the horizontal and vertical coordinates of sample points respectively. The resulting coefficient matrix contains parameters [a, b, c, d, e, f] for the elliptical equation aX² + bXY + cY² + dX + eY + f = 0.

MATLAB 242 views Tagged

Design of linear classifiers in pattern recognition, including MATLAB implementations of Perceptron, Least Squares Method, and Support Vector Machine algorithms with detailed code explanations and parameter optimization techniques.

MATLAB 222 views Tagged

MATLAB simulation implementation of Least Squares (LS) and Total Least Squares (TLS) estimation methods. The observation data is generated with zero-mean, unit-variance Gaussian white noise for n=1,2,...,128 samples. The simulation tests TLS with AR order 4 to estimate AR parameters and sinusoidal frequency, then uses SVD-TLS for the same estimation. Key implementation aspects include: (1) Testing AR orders 4 and 6, (2) Executing SVD-TCS with unknown AR order, (3) Running simulations minimum 20 times for statistical reliability.

MATLAB 266 views Tagged