Numerical Methods Toolbox
Numerical Methods Toolbox
MSCALE(array_, ScaleFactorLogical)
Calculates and applies scale factors for a NxM matrix and returns a NxM scaled matrix.
All values in a row are scaled by dividing by the largest element in that row.
Also creates a 1-column vector of N elements, containing the scale factors.
Syntax: MScale(array_,ScaleFactorLogical)
If ScaleFactorLogical = False or omitted, returns the scaled matrix.
If ScaleFactorLogical = True, returns the scale factor vector.
Arr(range1...,)
Combines individual 1-D or 2-D arrays into a final 2-D array.
All individual arrays must be "vertical" and must have same number of rows.
Bairstow(polynomial, reference)
Returns the coefficients of a regular polynomial (maximum order = 6).
Polynomial is a reference to a formula in a cell
Reference is a cell reference or a name.
GaussElim(coeff_matrix, const_vector)
Solves systems of linear equations by Gaussian Elimination.
Returns the solution vector as an array.
Selected range can be either horizontal or vertical.
GaussJordan2(coeff_matrix, const_vector)
Solves systems of linear equations by the Gauss-Jordan elimination method
Returns the solution vector as an array.