How to Write a 2D Array to a File in Fortran for 3D Graph Creation?

  • #1
jpapa
5
0
Hello,

i have a problem and i was wondering whether anyone in here can give me a hand. I want to write a 2D array to a file in format that can be read from another program in order to make a 3D graph. I'm using fortran. In few words i want to place the data in columns and rows in the file exactly as they are written to the array.

I appreciate any help and i thank you in advance.


John
 
Technology news on Phys.org
  • #2
I'm not at all clear what you want to do here. I thought for a moment that you wanted to be able to just "print" the data file on the screen or printer, but you talk about "read from another program". HOW you save the data isn't important (they will, in any case, be saved linearly). As long as your other program reads the data back in exactly the same way the file was written you will get back exactly the same 2D array and can do whatever you want with it. That's one reason why most people today use "Object Oriented Programming": with the routines for writing to and reading from a file are part of the data definition, you are sure to do it right.
 
  • #3
I'm puzzled as to where the 3D graph comes from.
 
  • #4
HallsofIvy said:
I'm not at all clear what you want to do here. I thought for a moment that you wanted to be able to just "print" the data file on the screen or printer, but you talk about "read from another program". HOW you save the data isn't important (they will, in any case, be saved linearly). As long as your other program reads the data back in exactly the same way the file was written you will get back exactly the same 2D array and can do whatever you want with it. That's one reason why most people today use "Object Oriented Programming": with the routines for writing to and reading from a file are part of the data definition, you are sure to do it right.

I give an example. Let's say i have an array like this:


1 2 3 4 5
6 7 8 9 10
11 12 13 14 15


I want to be written in the file as it is and not like this:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15


Is that possible?


John
 

Similar threads

Replies
11
Views
2K
Replies
4
Views
2K
Replies
10
Views
25K
Replies
4
Views
1K
Replies
5
Views
4K
Replies
1
Views
3K
Replies
3
Views
4K
Replies
33
Views
5K
Back
Top