Darwin Help

Back to Index

GaussElim

Function GaussElim


Calling Sequence  GaussElim(A,b)
Parameters
NameTypeDescription

A matrix(numeric) 
b array(numeric) 
Return Type  a vector (one dimensional array) of numeric
Synopsis Given a matrix of numerical values A and vector b, this function computes x so that A * x = b by Gaussian elimination. A must be a square numerical matrix.
Examples
> GaussElim([[2,4,6], [9,0,27],[17,23,5]], [8, 15, 17]);
[-0.8225, 1.1667, 0.8297]
See also Cholesky,   convolve,   Eigenvalues,   GivensElim,   Identity,   matrix,   matrix_inverse,   transpose