iwtry 发表于 2004-6-23 10:05:23

【求助】FORTRAN中有没有求矩阵逆的库函数?

自己编可以,但总感觉这样的函数应该包含在FORTRAN中。
谢谢指教!

wgao 发表于 2004-6-23 18:33:13

回复: 【求助】FORTRAN中有没有求矩阵逆的库函数?

好象没有吧

iwtry 发表于 2004-6-24 14:03:47

回复: 【求助】FORTRAN中有没有求矩阵逆的库函数?

昨天在徐世良编的fortran算法书中找到一求实矩阵逆阵的程序,用了一下,还没有测试,权当补充好了。

freepu 发表于 2004-6-24 21:39:52

回复: 【求助】FORTRAN中有没有求矩阵逆的库函数?

矩阵求逆方法很多,不同的矩阵有不同的求逆方法,计算速度大不一样。因此不可能放到fortran中成为库函数的。毕竟fortran只是一个编程平台,不是象matlab一样的计算应用平台。

chengcs 发表于 2004-6-30 11:27:18

回复: 【求助】FORTRAN中有没有求矩阵逆的库函数?

powerstaion里的IMSL函数库有大量的函数,可以直接调用!

iwtry 发表于 2004-6-30 16:20:31

回复: 【求助】FORTRAN中有没有求矩阵逆的库函数?

请教如何找到、调用IMSL函数库?有没有关于该函数库的说明?还有别的fortran的函数库没?不胜感激!!

scar 发表于 2004-6-30 19:16:05

回复: 【求助】FORTRAN中有没有求矩阵逆的库函数?

记得是有的,不同的矩阵有不同的求逆矩阵函数的,如:

LINRG/DLINRG (Single/Double precision)
Compute the inverse of a real general matrix.
Usage
CALL LINRG (N, A, LDA, AINV, LDAINV)
Arguments
N — Order of the matrix A. (Input)
A — N by N matrix containing the matrix to be inverted. (Input)
LDA — Leading dimension of A exactly as specified in the dimension statement
of the calling program. (Input)
AINV — N by N matrix containing the inverse of A. (Output)
If A is not needed, A and AINV can share the same storage locations.
LDAINV — Leading dimension of AINV exactly as specified in the dimension
statement of the calling program. (Input)

mychinese 发表于 2007-6-28 15:43:52

LDA是什么意思啊

LDA是什么意思啊
还有就是在FFT2D中的LDA,LDCOEF这些都表示什么意思呢?

CALL FFT2D (NRA, NCA, A, LDA, COEF, LDCOEF)

adee 发表于 2007-6-28 18:08:43

7楼的没错,当然,首先要USE IMSL

[ 本帖最后由 adee 于 2007-6-28 18:14 编辑 ]

shliangw 发表于 2007-7-2 19:49:16

wish you deal with your problem successfully!

wish you deal with your problem successfully!

[ 本帖最后由 shliangw 于 2007-7-13 10:03 编辑 ]

fenfeng19 发表于 2010-3-21 16:44:25

谢谢~~楼主

post 发表于 2010-3-28 18:22:18

Reference:

LINPACK
页: [1]
查看完整版本: 【求助】FORTRAN中有没有求矩阵逆的库函数?