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

link|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 at 19:24
feedback

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.

link|improve this answer
feedback

Perhaps this is what you need:

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

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

link|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 at 8:40
feedback

Your Answer

 
or
required, but never shown

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