find_independents

compas_tno.algorithms.find_independents(E, method='SVD', tol=None)

Overall method to find independent edges dependent on method

Parameters:
Earray

Equilibrium matrix.

methodstr

Method to find independents. Default is ‘SVD’. More to come.

tolfloat

Tolerance for small singular values. Default is None.

Returns:
indlist

Independent columns.

Raises:
ValueError

If method is not one of {“SVD”, “QR”}.