Hi dear friens,
I have the following problem that i think might be a solution
suppose to heve the following code:
[code/]
real, dimension(1:3), target :: max
real, dimension(1:4), target :: min
real, dimension(:), pointer :: p1,p2
p1=>max
p2=>min
[/code]
so far it is all ok.
What i'd like...