contents.m

来自「这是《Numerical Methods with MATLAB: Imple」· M 代码 · 共 22 行

M
22
字号
% NMM toolbox:  routines for linear algebra and solution of linear systems
%
% Cholesky        Cholesky factorization of a symmetric, positive definite matrix
% demoNewtonSys   Solve a 2-by-2 nonlinear system by Newton's method
% demoSparse      Script demonstrating some sparse matrix commands
% demoSSub        Solve a 2-by-2 nonlinear system by successive substitution
% GEPivShow       Show steps in Gauss elimination with partial pivoting and
%                 back substitution
% GEshow          Show steps in Gauss elimination and back substitution
%                 No pivoting is used.
% luNopiv         LU factorization without pivoting
% luNopivVec      LU factorization without pivoting - vectorized implementation
% luPiv           LU factorization with partial pivoting
% newtonSys       Newton's method for systems of nonlinear equations.
% pumpCurve       Coefficients of quadratic pump curve given head and flow rate
% rotvec          Rotates a three dimensional vector
% rotvectTest     Use the rotvec function to rotate some vectors
% solveSpeed      Measure elapsed time and flop rate for solving Ax=b
% tridiag         Create tridiagonal matrix from two or three scalars or vectors.
% tridiags        Create sparse tridiagonal matrix from two or three scalars or vectors.
% vectorSequence  Behavior of a vector sequence x.^k in different p-norms

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?