gauss#

static vectorious.gauss(x)#

Gauss-Jordan elimination (i.e. returns the reduced row echelon form) of x.

Arguments:
Returns:

NDArray

Examples:

import { gauss } from 'vectorious/core/gauss';

gauss([[1, 2, 3], [4, 5, 6]]); // => array([[1, 0, -1], [-0, 1, 2]])