How to create a contour plot from 3 vectors
15 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Robert Jones
el 4 de Feb. de 2024
Movida: Dyuman Joshi
el 16 de Feb. de 2024
Hello,
I have a table with 3 columns X,Y,Z.
how do I create a contour ploy for Z(x,y)?
Thank you
0 comentarios
Respuesta aceptada
Walter Roberson
el 4 de Feb. de 2024
numcontours = 5;
[minx, maxx] = bounds(X);
[miny, maxy] = bounds(Y);
xv = linspace(minx, maxx);
yv = linspace(miny, maxy);
[XGrid, YGrid] = meshgrid(xv, yv);
F = scatteredInterpolant(X, Y, Z);
ZGrid = F(XGrid, YGrid);
contour(XGrid, YGrid, ZGrid, numcontours);
1 comentario
Más respuestas (1)
Walter Roberson
el 4 de Feb. de 2024
numcontours = 5;
%https://www.mathworks.com/matlabcentral/fileexchange/38858-contour-plot-for-scattered-data
TRI = delaunay(X, Y, Z);
tricontour(TRI, X, Y, Z, numcontours);
0 comentarios
Ver también
Categorías
Más información sobre Contour Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!