What is the different between "null" command and "svd" command
Mostrar comentarios más antiguos
If there is a 5 by 3 matrix H ,i can use SVD to find the null space of H.But i find there is a "null "command,which can help me to find Null space of matrix.
At first ,i thought the result of using SVD command and null command will be the same,however,it is not.
For example
%Produce a 5 by 3 matrix
H = randn(5,3)
%using null command
nuA=null(H)
%Using SVD to find the null space basis ,null space will be in UA
[UA,SA,VA] = svd(H)
svA=UA
svddA=svA((1:5),4)+svA((1:5),5)
%we can find the result of svddA multiple H is almost zero
see=svddA'*H
The window show me svddA is a 5 by 1 matrix,however.
nuA show me Empty matrix: 3-by-0
Why?what is different between them?
Respuestas (1)
Bruno Luong
el 24 de Sept. de 2019
Beside the trivial must do "reading the doc" you can just type
edit null
to see how NULL call SVD and keeps the singular vectors of the NULL space.
Categorías
Más información sobre Linear Algebra en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!