function anomaly_1d(x) result(result)
implicit none
real, intent(in) :: x(:)
real, allocatable :: result(:)
integer :: n
n = size(x)
allocate(result(n))
result = x-mean(x)
end function anomaly_1d
liudy02 发表于 2019-4-27 15:01
第一个问题,子进程里的用动态数组分配的内存你不必担心,不会造成内存泄漏的,不需要你手动去释放。实际的 ...
欢迎光临 Fortran Coder (http://bbs.fcode.cn/) | Powered by Discuz! X3.2 |