independent(a,b)

Returns true if arrays (or vectors) a and b are linearly independent.

independent(A)

Returns true if the columns of matrix A are linearly independent.


See also span nullspace 


Example


x = ( 1, 2, 4 );

y = ( 2, 4, 8 );

independent( x, y )

false