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

14 次查看(过去 30 天)
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

采纳的回答

Thiago Henrique Gomes Lobato
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 个评论
N/A
N/A 2020-2-3
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)

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Surface and Mesh Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by