This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from sympy import * | |
| def rref_from_null_space(N): | |
| """ | |
| Derives the rref of a matrix from its null space | |
| Args: | |
| N: Matrix where each column represents a vector in the | |
| null space of the matrix. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from sympy import * | |
| def rref_from_null_space(N): | |
| """ | |
| Derives the rref of a matrix from its null space | |
| Args: | |
| N: Matrix where each column represents a vector in the | |
| null space of the matrix. |