meshgrid and griddata usage and NaN results for griddata

조회 수: 7 (최근 30일)
Arundhatee Talukdar
Arundhatee Talukdar 2011년 11월 11일
I am trying to use meshgrid and griddata for plotting vv values over x and y Where
vv= 10000*1 matrix where I stored the (z)values for my points in the plot
and my code is
[X,Y]= meshgrid(1:100, 1:100);
x = rand(10000,1); y = rand(10000,1);
ZI = griddata(x,y,vv,X,Y);
hold on
imshow(ZI, jet);
hold on
I am getting NaN for my ZI values. Why so?

답변 (1개)

Seth DeLand
Seth DeLand 2011년 11월 11일
The GRIDDATA function is trying to use the data in x,y,vv to fit a surface and then interpolate this surface at the points specified in X and Y.
The problem here is that x and y were created with RAND, so they are on the range 0<x<1 and 0<y<1. The points specified in X and Y are on the range 1<X<100 and 1<Y<100. So the range over which we are trying to interpolate has no defined values from the range that the surface was calculated.
A quick way to get some reasonable results would be to modify line 2 to be:
x = 100*rand(10000,1); y = 100*rand(10000,1);
  댓글 수: 1
Arundhatee Talukdar
Arundhatee Talukdar 2011년 11월 13일
Thank you so much. I tried this.
x = 101*rand(10000,1); y = 101*rand(10000,1);
Every element now has a value, but still element (100,1) still showing as NaN. can you please provide me some help here!

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by