QR decomposition - Why is the first element of an orthogonal matrix always negative?
Afficher commentaires plus anciens
Hi, I noticed that the first element of an orthogonal matrix extracted from the qr() function is always negative, whatever the initial matrix and its size. The other elements do not have fixed signs though.
In the simple code below, j=0 always.
j=0;
for i=1:1:100000
[Q,~] = qr(randn(3,3));
if Q(1,1)>=0
j=j+1;
else
end
end
disp(j)
Why is that so ?
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Matrix Decomposition dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!