commands → gramschmidt

gramschmidt(A)

The gramschmidt command performs Gram-Schmidt reduction to make the rows of A orthogonal.

Examples

gramschmidt([[1,2],[3,4]]);
	[[1, 2], [4/5, -2/5]]