different results with griddata in Matlab2011b vs Matlab2008a
1 次查看(过去 30 天)
显示 更早的评论
I am using the griddata function with exactly the same variables in Matlab2008a and Matlab2011b, but I get different results. The result from 2011b does not seem correct to me.
The command I'm using is:
[V1 V2 V3] = griddata(A(:,1),A(:,2),A(:,3),B(:,1),B(:,2));
And I check the number of NANs:
S=sum(isnan(V3))
In Matlab2008a I get 6 NANs, in Matlab2011b I get 20.
(I give you the exact matrices because I can not reproduce the problem with any numbers. However, they are small: 21x3 and 27x3)
Can someone tell me what has changed between the two Matlab versions I'm using and how can I get the same results in both of them?
0 个评论
回答(1 个)
Shashank Prasanna
2013-2-9
Take a look at the release notes. There have been few changes in:
R2009b > Mathematics > Computational Geometry Functions Being Changed
2- and 3-D computational geometry functions (delaunay, convhull, griddata, voronoi, delaunay3, griddata3) no longer use QHULL or the QHULL options arguments. The N-D functions gridatan, delaunayn, convhulln, and voronoin still use QHULL. Compatibility Considerations
The QHULL options arguments to delaunay, convhull, griddata, and voronoi are no longer required and are currently ignored. Support for these options will be removed in a future release.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Delaunay Triangulation 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!