爱气象,爱气象家园! 

气象家园

 找回密码
 立即注册

QQ登录

只需一步,快速开始

新浪微博登陆

只需一步, 快速开始

搜索
查看: 4943|回复: 3

[程序设计] matlab根据点插值后的buffer制作

[复制链接]

新浪微博达人勋

发表于 2014-6-3 21:26:01 | 显示全部楼层 |阅读模式

登录后查看更多精彩内容~

您需要 登录 才可以下载或查看,没有帐号?立即注册 新浪微博登陆

x
matlab根据点插值后,删除指点距离之外的值。有点类似制作buffer。xpt = 1000*rand(28,1)+1000;
ypt = 1000*rand(28,1);
zpt = 1200+100*sin(xpt/100)-50*cos(ypt/150);

% Create a surface from the elevation measurements:
[X,Y,Z] = griddata(xpt,ypt,zpt,1000:2:2000,(1000:-2:0)');

% Plot your original surface and observational data points:
figure('position',[100 100 1000 400])
subplot(1,2,1)
pcolor(X,Y,Z)
colormap(autumn(256))
shading interp
cb = colorbar;
ylabel(cb,'surface elevation (m)')
axis equal
hold on
plot(xpt,ypt,'b*','markersize',12)
title('complete surface')

Z2 = replacefartherthan(X,Y,Z,xpt,ypt,100);

subplot(1,2,2)
pcolor(X,Y,Z2)
colormap(autumn(256))
shading interp
cb = colorbar;
ylabel(cb,'surface elevation (m)')
axis equal
hold on
plot(xpt,ypt,'b*','markersize',12)
title('surface w/ points >150 m from obs. removed.')


untitled.jpg


replacefartherthan.m (3.4 KB, 下载次数: 6)
untitled.jpg

评分

参与人数 1金钱 +10 贡献 +2 收起 理由
Aires + 10 + 2

查看全部评分

密码修改失败请联系微信:mofangbao

新浪微博达人勋

发表于 2014-6-9 14:47:38 | 显示全部楼层
密码修改失败请联系微信:mofangbao
回复

使用道具 举报

新浪微博达人勋

发表于 2014-10-20 11:55:56 | 显示全部楼层
楼主,为什么我在matlab 的help 里没有找到replacefartherthan这个函数,我用的是matlab2012a这个版本
密码修改失败请联系微信:mofangbao

新浪微博达人勋

 楼主| 发表于 2014-10-20 14:25:38 | 显示全部楼层
雨芷芯空 发表于 2014-10-20 11:55
楼主,为什么我在matlab 的help 里没有找到replacefartherthan这个函数,我用的是matlab2012a这个版本

换一个高版本的2013以上的
密码修改失败请联系微信:mofangbao
您需要登录后才可以回帖 登录 | 立即注册 新浪微博登陆

本版积分规则

Copyright ©2011-2014 bbs.06climate.com All Rights Reserved.  Powered by Discuz! (京ICP-10201084)

本站信息均由会员发表,不代表气象家园立场,禁止在本站发表与国家法律相抵触言论

快速回复 返回顶部 返回列表