How can I extract a line from a surface?

10 ビュー (過去 30 日間)
Leonardo Colavitti
Leonardo Colavitti 2017 年 2 月 17 日
コメント済み: Leonardo Colavitti 2017 年 2 月 21 日
Hello everybody, I would like to extract a line from a surface. I already represent quite easily with the commands plot3, mesh and surf my surface, that is divided in three parts because it represents three different domains. My initial input (in attachment the file InputValues.txt)is composed by a matrix (18011*3) of Longitude, Latitude and Depth values. I would like to build a function that in input takes the position of start (A) and end of my profile (B) (xa,ya,xb,yb) and in output return the position of the corresponding z in A and B {e.g. [A,B] = myfunc(xa,ya,xb,yb)}. Finally, I would like to plot the obtained curve after cutting my surface with a vertical plane. I have already achieved this result with another software (Global Mapping Tools, very used in geophysical applications), but now I'd like to obtain the same thing in Matlab environment, of which I am quite new. Someone is familiar with these kind of problems? Do you have any suggestions, please? Thanks in advance,
Leonardo

回答 (1 件)

Sindhuja Parimalarangan
Sindhuja Parimalarangan 2017 年 2 月 21 日
It is possible to extract z-value for given x and y values using the find function. For example,
h = surf(x,y,z);
[xvalue,yvalue] = find((h.XData==xa) & (h.YData==ya));
Please consider floating point tolerance in the "==" comparison.
You can model your function based on the above code.
Regarding obtaining the curve after a vertically cutting the surface, you could use the contour3 function as described in this link.
  1 件のコメント
Leonardo Colavitti
Leonardo Colavitti 2017 年 2 月 21 日
Hello Sindhuja, thanks for your answer but I think that my problem is a bit more complicated. First, i think that the function 'surf' works with matrices as input and in my case x, y and z are vectors. So, I used the function meshgrid that returns 2-D grid coordinates based on the coordinates contained in vectors x and y. Moreover, I wrote the equation of the line through 2 points, that are inside my domain. Startpoint has arbitrary coordinates x1,y1 and endpoint is x2, y2. For the z_grid instead I used the function griddata, that is used to interpolate scattered data. The process is a bit slow but at the end I was able to get a matrix along the vertical coordinate. My problem at this point is to find the z position for x and y coordinates belonging to the straight line. I tried to do this, with the interp2 function but I get the following error:
[Z]=interp2(x_grid, y_grid, z_grid, X, Y);
Error using griddedInterpolant The grid was created from grid vectors that were not strictly monotonic increasing.
Error in interp2>makegriddedinterp (line 228) F = griddedInterpolant(varargin{:});
Error in interp2 (line 136) F = makegriddedinterp(X, Y, V, method,extrap);
What am I doing wrong?
For details, in attachment, you can find the code.
Thanks again for your time and your availability, I really hope someone can help me,
Leonardo

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by