LAPACK orthonormalization function

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-14 02:01:52

问题


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?


回答1:


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.




回答2:


Here direct links to the documentation:

  • SGEQRF
  • DGEQRF
  • CGEQRF
  • ZGEQRF


来源:https://stackoverflow.com/questions/4515103/lapack-orthonormalization-function

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!