Hi,
I was wondering whats wrong with the way I'm passing my allocatable arrays. I've narrowed down the error to something similar to this:
program test_array
integer, allocatable :: test(:)
integer n
allocate(test(5))
test = (/ 1,2,3,4,5 /)
call...
Thanks. But now I'm having trouble because I keep triggering breakpoints on my allocation lines, not exactly sure why it occurs. Here's an instance of the code (comments removed):
subroutine wavelettransform(in,filt,out)
real in(16), out(16)
real, allocatable :: filt(:)
real...
Hi,
I'm not really a programmer and I've been working mostly in Matlab for the last few weeks. Now I need to take my work and translate it to Fortran to integrate it with the rest of the program (which is written in Fortran 77).
I'm just wondering if it's possible to assign the length of the...
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.