Wiki

Clone wiki

symja_android_library / Symbols / NullSpace

NullSpace

NullSpace(matrix)
compute the nullspace of the matrix.

See:

Examples

>>> NullSpace({{1,0,-3,0,2,-8},{0,1,5,0,-1,4},{0,0,0,1,7,-9},{0,0,0,0,0,0}})
{{3,-5,1,0,0,0},
 {-2,1,0,-7,1,0},
 {8,-4,0,9,0,1}}

Related terms

CharacteristicPolynomial, ConjugateTranspose, Det, DiagonalMatrix, Dot, Eigenvalues, Eigenvectors, HilbertMatrix, IdentityMatrix, Inverse, JacobiMatrix, LinearSolve, LUDecomposition, MatrixPower, MatrixQ, MatrixRank, SingularValueDecomposition, Tr, Transpose, VandermondeMatrix, VectorQ

Updated