Being new to Fortran 90 free-form, I would really like to know why the following piece of code snippet would not work:
program test2
implicit none
!!! A program to practice f90 writing.
! Define double precision data
integer, parameter :: dp = kind(1.d0)
real(dp) :: a(3), b(3)
integer :: i
a = (/(i, i=1, 3)/)
b = (/(i, i=1, 3)/)
write (*, *) m31tensorprod(a, b)
contains
function m31tensorprod(a, b)
real(dp), dimension(3), intent(in) :: a, b
real(dp), intent(out) :: m31tensorprod(3, 3)
integer :: k1, k2
forall(k1=1:3, k2=1:3)
m31tensorprod(k1, k2) = a(k1) * b(k2)
end forall
return
end function m31tensorprod
end program test2
When I try to compile this via gfortran test2.f90, it says:
test2.f90:13.4:
function m31tensorprod(a, b)
1 Error: Symbol at (1) is not a DUMMY variable
I thought because m31tensorprod
is an internal function, it shouldn't need to be declared. Where did I do wrong?
Thanks,
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…