ellipm
Programmer
- Apr 19, 2012
- 7
Hi,
I have an enormous amount of results to print and i'm wondering if there's a way to print them every 100 steps for example. i'm trying to do it that way
but i didn't make any progress so far. I'm not sure that there's such a possibility in fortran.
I have an enormous amount of results to print and i'm wondering if there's a way to print them every 100 steps for example. i'm trying to do it that way
Code:
DO I=1,NI,100
DO J=1,NJ
WRITE(2,200) DS(I),S(I),U(I,J)
enddo
ENDDO
but i didn't make any progress so far. I'm not sure that there's such a possibility in fortran.