Printing 1D array in Fortran as 2D array

  • #1
17
0
Delete..

Delete..
 
Last edited:

Answers and Replies

  • #2
They're not crazy, if I want to print all row entries in a column, then:
Code:
REAL,DIMENSION(2,3) :: array

DO,i=1,2
  WRITE(6,*) array(i,:)
END DO

You can use the semi-colon as an implicit "all" when operating on arrays.
 
  • #3
Yes. In C, two-dimensional arrays are simply one-dimensional arrayswhose element type is itself a one dimensional array. Since one-dimensional arrays are required to occupy contiguous storage, itfollows that the same must be true for an array of arrays.

Thanks
__________
Techstore are specialists in a range of http://www.techstore.ie/Design-Print/index.html" Services
 
Last edited by a moderator:
  • #4
They're not crazy, if I want to print all row entries in a column, then:
Code:
REAL,DIMENSION(2,3) :: array

DO,i=1,2
  WRITE(6,*) array(i,:)
END DO
I don't think you want that first comma after the DO.
You can use the semi-colon as an implicit "all" when operating on arrays.
This character - : - is a colon. This one - ; - is a semicolon.
 
  • #5
Right-o, as far as the comma, I occasionally get f90 and ANSYS APDL mixed up a bit. Also can't believe I called a, ':', a semi-colon. 1:11pm, perhaps, I was in a lunch daze.
 
  • #6


Delete..
BC2210,
Although it's possible for you to delete your own post, it's not a good idea to do so. Other people can possibly learn from your question.
 
  • #7
but why you want to delete the post was it not relevant
 
  • #8
may be it was
 

Suggested for: Printing 1D array in Fortran as 2D array

Replies
32
Views
1K
Replies
20
Views
2K
Replies
6
Views
493
Replies
1
Views
604
Replies
23
Views
641
Replies
6
Views
613
Replies
4
Views
2K
Replies
4
Views
1K
Back
Top