- 积分
- 14
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2015-7-14
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
刚刚接触nc文件,使用了本吧中的一代码,链接为http://bbs.06climate.com/forum.php?mod=viewthread&tid=11870&extra=&page=1
数据能读取出来,但是在运行到
[X, Y] = meshgrid(LatData,LonData);
这一步时出现了错误,错误提示为:
错误使用 repmat
内存不足。请键入 HELP MEMORY 查看选项。
出错 meshgrid (line 58)
xx = repmat(xrow,size(ycol));
出错 Untitled2 (line 9)
[X, Y] = meshgrid(LatData,LonData);
数据类型为:
lat
Size: 496713x1
Dimensions: x,y
Datatype: single
Attributes:
long_name = 'Pixel centre latitude in decimal degrees north'
units = 'degrees_north'
valid_min = -90
valid_max = 90
comment = ''
lon
Size: 496713x1
Dimensions: x,y
Datatype: single
Attributes:
long_name = 'Pixel centre longitude in decimal degrees east'
units = 'degrees_east'
valid_min = 0
valid_max = 360
comment = ''
请问各位大神如何解决啊?
|
|