我在fortran程式中想写一些读取nc档的程式
简易程式码如下
program
use netcdf
implicit none
integer :: year=2007,doy=349,hh=2
integer :: ios
integer :: ncid,state
character(len=128) :: filename = 'flist_storm'
state = nf90_open(trim(file_pwd),nf90_nowrite, ncid)
end program
以上只是开启的程式 但compile一直没过 猜测是use netcdf这行
要把netcdf这个 moduleu一起compile
在网络上找了下面这个指令
ifort -c -I/home/mydir/netcdf/include yyyyy.f90 -o yyyyy.x
虽然有跑出执行档 但是执行时出现
-bash: ./podTec_GlobalMap.x: cannot execute binary file
有确认都是在64位元
想问问大家 fortran compilenetcdf的方法还有其他的吗
或者我用法哪里错误
谢谢