3

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?

Anycorn
  • 50,217
  • 42
  • 167
  • 261

2 Answers2

3

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.

Stephen Canon
  • 103,815
  • 19
  • 183
  • 269
2

Here direct links to the documentation:

Michael Lehn
  • 2,934
  • 2
  • 17
  • 19