- 积分
- 7100
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2011-9-16
- 最后登录
- 1970-1-1
|

楼主 |
发表于 2015-10-30 11:07:46
|
显示全部楼层
我改成0.5也还是没有
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl"
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl"
begin
npts = 500
y = 500.+.9* ispan(0,npts-1,1)*sin(0.031415926535898*ispan(0,npts-1,1))
wks = gsn_open_wks("eps","title_ex") ; Open an X11 window
res = True ; Plot options desired.
res@tiMainString = "This is a main title"
res@tiMainFontColor = 40
res@tiMainFontHeightF = 0.5
res@tiMainFontThicknessF = 2
res@xyLineColor = 2
res@tiXAxisString = "x values"
res@tiYAxisString = "y values"
res@xyDashPattern = 2
res@xyLineThicknessF = 3
plot = gsn_csm_y(wks,y,res)
end |
|