方程 Resources

Showing items tagged with "方程"

% Implementation of SSOR preconditioned conjugate gradient method for solving Ax=b % Input parameters: % A - positive definite matrix [n*n] % b - right-hand side vector % omega - SSOR preconditioning parameter (range: 0--2) % Times - maximum iteration count % errtol - error tolerance for termination condition % % Output parameters: % NewX - approximate solution x for equation Ax=b % avgerr - current average absolute error during computation % % This implementation efficiently handles large sparse matrices using symmetric successive over-relaxation preconditioning to accelerate convergence.

MATLAB 309 views Tagged

Equation Root-Finding Methods % inv - Matrix inversion for linear systems % roots - Polynomial root calculation % fzero - Single-variable function root solver % fsolve - Nonlinear system solver % solve - Symbolic equation solution % *newton - Newton-Raphson method implementation

MATLAB 191 views Tagged

Implementation of ellipse fitting using least squares method - fit_ellipse(x, y, axis_handle) processes coordinate points (x,y) based on general conic equation formulation. This robust algorithm effectively minimizes fitting errors through mathematical optimization.

MATLAB 301 views Tagged

This guide demonstrates system estimation using ARX and ARMAX models for a transfer function 2(s+1)/(s²+2s+2), including discrete conversion at 100ms sampling frequency with na=nb=2, nc=1 parameters, and pole-zero analysis implementation.

MATLAB 220 views Tagged