Hello!
I wrote this routine that takes two 3D arrays and performs a multiplication.......
function matmull(a,b)
! This in-line function performs array muliplication of two 3-D arrays
double precision :: a(:,:,:),b(:,:,:)
double precision :: matmull(size(a,1),size(b,3))
integer i...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.