次の行を使用して、Fortranコードのデータ配列を読み取りたいと思います。read(irdcld, 9101,end=9000) ctest, lay, frac, (datbinsa(ibin), & ibin= 1, nbins), (datbinsb(ibin), ibin= 1, nbins)
私はgfortranでコンパイルしています。残念ながら、次のエラーメッセージが表示されます。read(irdcld, 9101,end=9000) ctest, lay, frac, (datbinsa(ibin), & 1 Error: Expected variable in READ statement at (1)
私が置くだけで行を読むことができます:read(irdcld, 9101,end=9000) ctest, lay, frac, datbinsa(ibin)
しかし、私は配列全体を読みたいです!ggfortranをコンパイラとして使用する場合、どうすれば配列を読み取ることができますか?ご協力ありがとうございました!!