draw contour from given data

11 Ansichten (letzte 30 Tage)
TAPAS
TAPAS am 11 Apr. 2020
Bearbeitet: Ameer Hamza am 11 Apr. 2020
i have attached one excel file which contains 3 column long,lat,data.I want to draw a contour plot
  1 Kommentar
darova
darova am 11 Apr. 2020
Did you try something? Your desire is not enough. I want some effort

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Ameer Hamza
Ameer Hamza am 11 Apr. 2020
Bearbeitet: Ameer Hamza am 11 Apr. 2020
Something like this
data = readmatrix('final.xlsx');
x = data(:,1);
y = data(:,2);
v = data(:,3);
[X,Y] = meshgrid(unique(x), unique(y));
V = reshape(v, size(X));
contour(X,Y,V);
Data values at a few points are messing up the colors of all the contour lines. You mat consider filtering values in matrix v in the above code.

Weitere Antworten (0)

Kategorien

Mehr zu Contour Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by