非常简单的问题。
说我有
real, dimension(0:100) :: realResults
我想遍历realResults,最终创建表单数组的json
[[x1,y1], [x2,y2], [x3, y3], ... ]
我很确定我想使用“ do”,但是我不确定如何
谢谢
最佳答案
在Fortran 90中,您可以执行数组迭代,例如:
do i = lbound(realResults), ubound(realResults)
! do something with realResults(i)
end do