How to convert a GRD file to XYZ or MAT file
    5 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
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!!
0 commentaires
Réponses (1)
  Jacob Valdes
 le 15 Juin 2021
             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
0 commentaires
Voir également
Catégories
				En savoir plus sur Filename Construction dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!