How to color a mesh by temperature(or other value) preserving the elevation. Using two matrix(same length)

13 次查看(过去 30 天)
I have a mesh that plots a terrain with values in a matrix Z(NxN), i need to color this whit the temperature value in every heigth set in another matrix with same length T(NxN) preserving the corresponding elevation.So my problem is that it only colors depending on the height.untitled.jpg
  1 个评论
Adam Danz
Adam Danz 2019-12-4
编辑:Adam Danz 2019-12-4
Not sure if your plot is 3D or 2D. Maybe this will get you started (links below)
---[Update after your question-update]---
  1. Which function did you use to produce the 3D plot?
  2. I understand that you used array Z to produce the plot but you want the color scale to be based on another variable T, of equal size to Z. Is that correct? Could you provide the dimension of both variables just to confirm that?

请先登录,再进行评论。

采纳的回答

Fabio Freschi
Fabio Freschi 2019-12-4
% dummy data
[X,Y] = meshgrid(1:0.5:10,1:20);
Z = sin(X).*cos(Y);
T = X+Y;
% plot
surf(X,Y,Z,T)
colormap('hot')
colorbar

更多回答(0 个)

类别

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

产品


版本

R2015b

Community Treasure Hunt

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

Start Hunting!

Translated by