How to remove needless ranges from the pcolor map?
1 次查看(过去 30 天)
显示 更早的评论
I have three data - Lon(304x448), Lat(304x448), SIC(304x448)
And below is the code I used
lon=Lon(:);
lat=Lat(:);
x1=floor(min(lon));
x2=ceil(max(lon));
y1=floor(min(lat));
y2=ceil(max(lat));
lon1=[x1:0.05:x2];
lat1=[y1:0.05:y2];
[long,lati]=meshgrid(lon1,lat1);
sic=griddata(Lon,Lat,SIC,long,lati);
pcolor(lon1,lat1,sic)
shading flat
This way, the map looks like this
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/162190/image.png)
But it runs out the observation range.
Below is plotting the observation points on the picture 1.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/162191/image.png)
What should I do to remove that range?
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!