- 积分
- 875
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2011-10-14
- 最后登录
- 1970-1-1
|

楼主 |
发表于 2011-11-1 21:21:49
|
显示全部楼层
ztftom 发表于 2011-11-1 19:37
从你贴的第一个帖子来看,可能是图形显示的问题,应该是在建workstation时,没法找到你的X11,你是在serv ...
是在服务器上转的,额~这个是3077附近的
if(calldraw)
draw(plot)
end if
if(callframe)
frame(wks) ; advance the frame
;
; Only set the device coordinates back if the frame is advanced, because
; if we do it when the frame hasn't been advanced, then anything that
; gets drawn on this plot later will be drawn under the old device
; coordinates.
;
; This means that the user will have to be aware that if he/she decides to
; advance the frame him/herself, then any subsequent plots draw (in which
; the device coordinates are not recalculated), may be drawn incorrectly.
然后这个是8657上下的:
if(force_x_linear.or.force_x_log.or.force_y_linear.or.force_y_log)
overlay_plot_object = plot_object
delete(plot_object)
plot_object = overlay_irregular(wks,wksname,overlay_plot_object,\
data_object,force_x_linear,\
force_y_linear,force_x_log, \
force_y_log,"contour",llres)
end if
draw_and_frame(wks,plot_object,calldraw,callframe,0,maxbb)
; Return plot object and data object (as attribute of plot object).
plot_object@data = data_object
return(plot_object)
end
然后关于第二个问题,因为服务器上本来有嘛,所以有很多个,但是应该指向对了就不会有问题吧?我给你看看我的.bashrc
##set NCL ##
export NCARG_ROOT=/home/lux/other
export PATH=/home/lux/other/bin:$PATH
|
|