It's known that we can use the library to detect the array:
matrix_rank(A)
Then it will return the rank of this matrix. I got my rank for A is : 1450
However, it's in fact 1465 columns in the array. Then my problem is: how to delete those 15 columns that are the rubbish of this array? Is there any way to solve this issue?
Like for example,
G = [ -1 0 0 0 ]
[ 0 -1 0 0 ]
[ 0 0 -1 -1 ]
[ -1 -1 0 0 ]
The last column is rubbish because it's the sum of the first two lines.
So is there any library that can help us to delete the column in python?