BTW I have the dynamic arrays. What should I do if it says "A syntax error in expression, near `[1]@10'." ?What is the code and the expression you are using. Probably you have to wrap in brackets.
I wonder, how it handles the 1,2 or multidimensional arrays, is that Start and Count accounts for all dimensions in the array, isn't there a more automatic way, like editor detects itself the size of the array.I doubt it is possible to detect the sizes, unfortunately.
BTW I have the dynamic arrays. What should I do if it says "A syntax error in expression, near `[1]@10'." ?
What is the code and the expression you are using. Probably you have to wrap in brackets.
real, allocatable :: Kmm(:,:)
Allocate ( Kmm(rigid_floor_num*3,rigid_floor_num*3) )
Here is the sample assignment,
Kmm(:,:) = Rd_assem(1:test_num-1,1:test_num-1)
IMHO it shouldn't have anything to do with fortran compiler, other than simply fetching the data from it. But it's a CB issue as far as I got ?If you prove that it works in command line gdb, the it will be a cb's issue.