2
votes
3answers
168 views

Cannot get data from a returned C float pointer in Fortran 90

I am calling a C function from a Fortran 90 program (I have to use Fortran 90). This C function takes a couple arguments and returns a float pointer. I cannot seem to print the returned data correctly ...
2
votes
1answer
147 views

Is it possible to use a pointer in type constructor in fortran?

In some Fortran 95 code, I have a type with a pointer field. I want to declare a module variable of type(foo) which is initialized at compile-time. Something like this: module foo_module implicit ...
0
votes
1answer
363 views

fortran 90 allocatable array already allocated on calling type bound procedure

I am getting this weird runtype error in my fortran code . I have a pointer to a user defined type A as an element of user defined type B. When I call a procedure associated with type A from a ...
0
votes
1answer
209 views

Fortran90: array of pointer arrays defined as pointer (bug in ifort 11.1?)

I have one question and one problem (I think they are related). question: Can I use in Fortran90 array of pointer arrays defined as pointer? type string character, pointer :: str(:) end type ...
3
votes
2answers
434 views

Fortran 90 array pass by reference issue

What happens if I allocate a F90 pointer thus: real, pointer :: abc(:) allocate abc (nx*ny*nz) I pass abc to a subroutine, where i redefine it as real arg1(nx,ny,xz) This seems to work fine. ...
3
votes
1answer
245 views

Arrays of pointers

I am trying to implement an array of pointers, so that I can loop over the elements. However I am not sure how to do this correctly: TYPE(domain),POINTER :: d01,d02,d03 ...
1
vote
1answer
978 views

pointer as a dummy argument

I am somewhat puzzled by the following program module test implicit none type TestType integer :: i end type contains subroutine foo(test) type (TestType), intent(out) :: ...
1
vote
1answer
2k views

Fortran pointer functions: why does this code's behavior depend on the order of function calls?

Context The toy Fortran code posted below calls two pointer functions. That is, both functions return a pointer. In fact, they're both array pointers. They both attempt to do the same thing, which ...