Borrar filtros
Borrar filtros

2D color or surface plot based on 3 columns of data

10 visualizaciones (últimos 30 días)
N/A
N/A el 2 de Feb. de 2020
Comentada: N/A el 3 de Feb. de 2020
I want to do a 2D plot based on 3 columns of data (X,Y and Z) . X column show positions, y column show speed and z column show emissions. I guess first I should make meshgrid between x and y then show the z values on this 2D plot. I want to have a result like the bottom of this image. So the result will shows emissions as colors on x(position)-y(speed) axis. Can somebody help me about this?
images.jpg

Respuesta aceptada

Thiago Henrique Gomes Lobato
Thiago Henrique Gomes Lobato el 2 de Feb. de 2020
Ideally you should have a perfect grid and them you can do this kind of plot. In your case, however, you have only scattered values and some grid points are outside your domain, which means that to plot the whole domain you would have to extrapolate the data and even get very wrong results.
A better solution is to interpolate only between the points you have and then plot the result. You can do this by first triangulating the points and the use the trisurf function to do the plot. An example code can be seen below:
A = xlsread('LMS.xlsx');
T = delaunay(A(:,1),A(:,2)); % Triangulation
trisurf(T,A(:,1),A(:,2),A(:,3))
xlabel('x')
ylabel('y')
colorbar
shading interp
view(2)
Untitled.png
  1 comentario
N/A
N/A el 3 de Feb. de 2020
Thanks for your help. But I want to show also X-V relationship while I'm showing emissions as a colour scale. So I need this image with colour of z value (emissions)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Surface and Mesh Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by