Member of the linalgebra class.
c = null(a)
c = null(a, 'r')
Generates an orthonormal basis for the null space of a matrix. The null space of a matrix A consists of all vectors x such that Ax = 0.
| Name | Description |
| a | Specifies a matrix. |
| 'r' | Generates a rational basis. |
| Name | Description |
| c | Returns the basis for a. c is a matrix. |
A = [1, 2, 3; 4, 5, 6]
C = null(A)