vote up 2 vote down star

really simple question.

say I have

real, dimension(0:100) :: realResults

and I want to iterate over realResults, ultimately to create json of the array of the form

[[x1,y1], [x2,y2], [x3, y3], ... ]

I'm pretty sure I want to use "do" but I'm not sure how

thanks

flag

+1 wtf. Your ideas are intriguing to me and I wish to subscribe to your newsletter. – TokenMacGuy May 3 at 23:45
What exactly does "json" acronym stand for ? – ldigas May 4 at 0:23

2 Answers

vote up 4 vote down check

In Fortran 90 you can do array iteration like:

do i = lbound(realResults), ubound(realResults)
  ! do something with realResults(i)
end do
link|flag
For that matter most fortran77 compilers since the 1980s have supported this form... – dmckee May 4 at 0:28
The Fortran 90 part is in the array support for lbound and ubound. What's even more cool is if you can grok some of the "whole array" functionality, you can do one-liners a la the legendary APL. – jaredor May 5 at 1:26
vote up 1 vote down

FORTRAN and json in the same paragraph?!?! WTF? Maybe something like:

      do 10 i = 0, 100
C        do something with realResults(i)
  10  continue
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.