- 积分
- 2756
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2015-10-1
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
我电脑上安装了netcdf,cmd里输入ncdump也有反应。但是在程序里用 use netcdf就会出错
程序开头一段是这样的:
!-----------------------------------------------------------------------
include 'F:/cygwin/usr/local/include/netcdf.inc'
program simple_xy_wr
use netcdf
implicit none
! 定义数据文件的名称
character (len = *), parameter :: FILE_NAME = "simple_xy.nc"
! 写一个12*6的二维数据
integer, parameter :: NDIMS = 2
!-----------------------------------------------------------------------
然后报错:
program simple_xy_wr
1
Error: Unexpected PROGRAM statement at (1)
E:\Fortran\Codes\simple_xy_wr.f90:4.12:
use netcdf
1
Error: Unexpected USE statement at (1)
E:\Fortran\Codes\simple_xy_wr.f90:4.6:
use netcdf
1
Fatal Error: Can't open module file 'netcdf.mod' for reading at (1): No such file or directory
请问应该怎么写才可以调用netcdf的函数啊?
|
|