| MATLAB Function Reference | ![]() |
Syntax
B=null(A)
Description
B = null(A)
傳回A的核空間(null space)其正交(orthonormal)基底(basis)。
Remarks
B'*B = I,A*B中有可須略的元素,同時(如果B不等於空矩陣(empty matrix))B的行數是A的核(nullity)。
Example
A =
1 2 3
1 2 3
1 2 3
null(A)
ans =
-0.1559 0.9509
-0.7971 -0.2809
0.5834 -0.1297
null(A,'r')
ans =
-2 -3
1 0
0 1
See Also
| now | num2cell | ![]() |