- 积分
- 129
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2016-11-14
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
如果出现了Assignment type mismatch, right hand side can't be coerced to type of left hand side如下:
fatal:["NclVar.c":1390]:Assignment type mismatch, right hand side can't be coerced to type of left hand side
fatal:["Execute.c":8575]:Execute: Error occurred at or near line 198 in file add_mask.ncl
果断的在line 198 行的变量赋值“=”换成“:=”。或换变量名
其原因是ncl变量赋值前是弱类型,赋值后是强类型。所以脚本执行到该行赋值时,变量已经被定义变量类型其如果和右边不一样就会报错, |
|