Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

orth(somematrix) is built into MATLAB but doesn't seem to be available in the Haskell hmatrix library.

share|improve this question
They say use Numeric.LinearAlgebra.Algorithms.qr, but I don't know how to write orth in terms of qr. – mcandre Feb 20 '12 at 19:24

2 Answers

up vote 5 down vote accepted
import Numeric.LinearAlgebra    

orth :: Field a => Matrix a -> [Vector a]
orth m = toColumns $ fst $ qr m

or point-free

orth = toColumns . fst . qr

Wikipedia has an explanation.

share|improve this answer

Perhaps this is what you need:

orth m = toColumns u
        where (u,_,_) = compactSVD m

https://github.com/AlbertoRuiz/hmatrix/issues/10#issuecomment-4077403

share|improve this answer
The columns of the rotation q from the qr factorization span the whole space. If you want an orthonormal basis of the range space of the input matrix m you must take only rank m columns from q (the matrix rank is numerically estimated using the SVD). Alternatively you can use the compatSVD as above, but the basis vectors will be different. – Alberto Ruiz Feb 22 '12 at 8:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.