在lapack中是否有准备好的例程来执行正交化,例如Gram-Schmidt或QR方法的一些变体?
如果不是,使用lapack执行正交化的推荐方法是什么?
发布于 2011-02-18 00:57:47
是的,有!请看:
sgeqrf (single precision real)
dgeqrf (double precision real)
cgeqrf (single precision complex)
zgeqrf (double precision complex)一般来说,有关LAPACK文档,请参考netlib。
发布于 2014-03-16 23:47:21
此处直接链接到文档:
https://stackoverflow.com/questions/4515103
复制相似问题