Color axis of surf plot

I have a room 12x12m². I placed data loggers in every 3 meters in order to measure temperature and humidity. The surface plot below represents the room humidity:
% Actual Data
Zh = [40.8,41.1,41.4;40.7,41,41.6;40.7,41.1,41.3]
[X,Y] = ndgrid([3,6,9],[3,6,9]);
% Interpolation
F = griddedInterpolant(X,Y,Zh,'linear');
[Xnew,Ynew] = ndgrid(1:11,1:11);
Zhnew = F(Xnew,Ynew)
surf(Xnew,Ynew,Zhnew)
I want to add room temperature data to this code below in order to make surface plot's colors.
Zt = [24.6,24.4,24;24.7,24.3,24;24.6,24.1,23.9]
What I try to mean is, humidity will be height of the surface plot and temperature will be colors from green to red.

 採用された回答

Walter Roberson
Walter Roberson 2013 年 8 月 23 日

1 投票

See the documentation:
surf(X,Y,Z,C) uses C to define color. MATLAB® performs a linear transformation on this data to obtain colors from the current colormap.

1 件のコメント

Flashbond
Flashbond 2013 年 8 月 23 日
編集済み: Flashbond 2013 年 8 月 23 日
Thanks for the source. did the trick!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeColor and Styling についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by