Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我要在 Fortran 中做一个标准的高斯消除程序,并且想知道是否已经有一些准备好的解决方案?最好是函数的形状。我查看了许多 fortran 数字书籍,但似乎没有任何好的解决方案。
您正在寻找LAPACK子程序DGETRF。这将执行 LU 分解。LU分解的“U”部分对应于高斯消元的解。
DGETRF
请注意,对于所有 LAPACK/BLAS 例程,第一个字母对应于数据类型...有关详细信息,请参阅wikipedia。