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

Is there ready routine in lapack to perform orthonormalization, for example Gram-Schmidt or some variation of QR method?

if not, what is the advised approach to perform orthonormalization using lapack?

share|improve this question

1 Answer

Yes, there is! Look at:

sgeqrf (single precision real)
dgeqrf (double precision real)
cgeqrf (single precision complex)
zgeqrf (double precision complex)

In general, for LAPACK documentation, consult netlib.

share|improve this answer

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.