creat a grid from xyz file

조회 수: 25 (최근 30일)
wassim boulala
wassim boulala 2020년 8월 27일
댓글: jonas 2020년 8월 28일
Hi!
I have a file of X,Y,Z values (X,Y are cartesian coordinates) and Z the altitude (it's a topo-bathymetry file).
can you tell me please how to creat a grid which contains this altitudes .
thank you

답변 (1개)

jonas
jonas 2020년 8월 27일
%make a 100x100 grid
[XX,YY] = meshgrid(linspace(min(X),max(X),100),linspace(min(Y),max(Y),100))
%interpolate Z data to grid
ZZ = griddata(X,Y,Z,XX,YY)
  댓글 수: 8
wassim boulala
wassim boulala 2020년 8월 28일
how can i do a graph in 2D (X,Y) ?
i think that works.
jonas
jonas 2020년 8월 28일
Sorry, but this is waste of time. I'll respond when you ask a coherent question.

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

카테고리

Help CenterFile Exchange에서 Directed Graphs에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by