- 积分
- 1842
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2019-1-3
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
绘制直方图总是提示定义好的变量是无效变量,Grads小白试了好多办法都没有解决,跪求大神帮助~
以下是fortran程序:
program main
implicit none
integer i,j
integer,parameter::it=10,tt=12
integer yy(it),mm(tt)
open(1,file='f:\lunwen\first\zl\year.txt')
open(2,file='f:\lunwen\first\zl\mon.txt')
open(11,file='f:\lunwen\first\cx\cishu\y.grd',form='binary')
open(12,file='f:\lunwen\first\cx\cishu\m.grd',form='binary')
read(1,*)(yy(i),i=1,it)
do i=1,it
write(11)yy(i)
print *,yy(i)
enddo
read(2,*)(mm(j),j=1,tt)
do j=1,tt
write(12)mm(j)
print *,mm(j)
enddo
close(1)
close(2)
close(11)
close(12)
end
ctl文件:
dset F:\lunwen\first\cx\cishu\y.grd
undef -9.99E+33
xdef 1 linear 1 1
ydef 1 linear 1 1
zdef 1 levels 1
tdef 10 linear JAN2010 1yr
vars 1
yy 1 99
endvars
;
gs文件:
'reinit'
'open f:\lunwen\first\cx\cishu\y.ctl'
'set parea 1 9 1 5'
'set x 1'
'set y 1'
'set z 1'
'set grads off'
'set gxout bar'
'set vrange 0 8'
'set xlint 1'
'set ylint 1'
'set bargap 60'
'set baropts filled'
'set barbase bottom'
'set grid off'
'set t 0 10'
'set ccolor 3'
'd yy'
'printim F:/lunwen/first/cx/cishu/y.png white'
;
十分感谢!!
|
|