Hi,
Are there subroutines in Silverfost library to inverse - add - substract - multiply matrix for nxn dimensions ( n>1000)
Thank you.
Welcome to our forums
Hi,
Are there subroutines in Silverfost library to inverse - add - substract - multiply matrix for nxn dimensions ( n>1000)
Thank you.
The FORTRAN language allows you to add and subtract arrays using whole arrays as in the statement
C = A + B
Standard FORTRAN also provides a function called MATMUL to multiply arrays.
For matrix inversion you will need a third party library such as LAPACK. You don't get this with FTN95/Plato. Here is a reference...
Thanks a lot.