Finding contour level for given x,y coordinate
1 次查看(过去 30 天)
显示 更早的评论
Hi, I have a contour plot of velocity field. Now, I want to obtain velocity value from the contour plot for any given [X,Y] coordinate. How can i obtain this? Please help
Attached contour plot (x axis horizontal)
0 个评论
采纳的回答
DGM
2021-8-23
Well, you already have the velocity data, so this shouldn't depend on the plot at all.
You can interpolate something like this:
% x and y values can't directly be used as subscripts
x = -50:50;
y = x;
v = peaks(101);
querypoint = [12.3 -17.7] % query point does not need to be integer-valued
vint = interp2(x,y,v,querypoint(1),querypoint(2),'bilinear')
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Contour Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!