Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

LAPACK orthonormalization function

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?

like image 416
Anycorn Avatar asked Mar 14 '26 10:03

Anycorn


1 Answers

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.

like image 77
Stephen Canon Avatar answered Mar 17 '26 03:03

Stephen Canon



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!