Error in surfergrifmap function

2 ビュー (過去 30 日間)
Ivan Mich
Ivan Mich 2021 年 8 月 19 日
コメント済み: Walter Roberson 2021 年 8 月 27 日
I am trying to use surfergridmap function in order to make a map with contours in matlab (see here https://www.mathworks.com/matlabcentral/fileexchange/10986-surfer-griddata). But when I use this command , command error shows :
Error using kriging (line 24)
Error. Input at least PointsX, PointsY and PointsElev
Error in Untitled2 (line 28)
[Xi,Yi,Zi]=surfergriddata(X,Y,Z,Xi,Yi,kriging)
my code is
clc
clear
filename1= 'file.csv'
[d1,tex]= xlsread(filename1);
X =d1(:,1);
Y=d1(:,2);
X=d1(:,3);
[Xi, Yi] = meshgrid(...
linspace(min(X),max(X)),...
linspace(min(Y),max(Y)));
[Xi,Yi,Zi]=surfergriddata(X,Y,Z,Xi,Yi,kriging)
could you please help me?

回答 (1 件)

Walter Roberson
Walter Roberson 2021 年 8 月 19 日
[Xi, Yi, Zi] = surfergriddata(X, Y, Z, Xi, Yi, 'kriging')
  9 件のコメント
Ivan Mich
Ivan Mich 2021 年 8 月 27 日
ok. thank you.
do you know an another way to grid my data with kriging method except from the above solution?
Walter Roberson
Walter Roberson 2021 年 8 月 27 日
http://mgstat.sourceforge.net/ looks like it is an interface to gstat and it appears gstat is open source.

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

カテゴリ

Help Center および File ExchangeGraphics Performance についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by