필터 지우기
필터 지우기

How to convert a GRD file to XYZ or MAT file

조회 수: 15 (최근 30일)
chaos4u2
chaos4u2 2013년 3월 4일
답변: Jacob Valdes 2021년 6월 15일
Hello, does anybody know how to convert a GRD file (from surfer) to a XYZ or MAT file. I would prefered MAT file. I've been looking but I couldn't find anything.
Thanks a lot for your help!!

답변 (1개)

Jacob Valdes
Jacob Valdes 2021년 6월 15일
function XYZ=grdtoxyz(X,Y,Z)
% X=(X,2);
% Y=(Y,2);
ccont=1;
for i=1:size(X,1)
for ii=1:size(X,2)
XYZ(ccont,:)=[X(i,ii) Y(i,ii) Z(i,ii)];
ccont=ccont+1;
end
end
XYZ= XYZ(isfinite(XYZ(:, 3)), :);
end

카테고리

Help CenterFile Exchange에서 Text Files에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by