What is the different between "null" command and "svd" command

5 Ansichten (letzte 30 Tage)
yang-En Hsiao
yang-En Hsiao am 24 Sep. 2019
Beantwortet: Bruno Luong am 24 Sep. 2019
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?

Antworten (1)

Bruno Luong
Bruno Luong am 24 Sep. 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.

Kategorien

Mehr zu Linear Algebra finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by