gpt4 book ai didi

MATLAB Colorbar - 相同的颜色,缩放值

转载 作者:太空宇宙 更新时间:2023-11-03 20:20:04 27 4
gpt4 key购买 nike

考虑以下示例:

[ X, Y, Z ] = peaks( 30 );
figure( 100 );
surfc( X, Y, Z );
zlabel( 'Absolute Values' );
colormap jet;
c = colorbar( 'Location', 'EastOutside' );
ylabel( c, 'Relative Values' );

输出如下: MATLAB Colorbar - Absolute Scaling

如何缩放颜色条上的刻度,即缩放 c 轴(例如,将值除以 100):

  • 不改变图中的 z 值和颜色
  • 不改变颜色条上的颜色
  • 不改变图上颜色、颜色条上的颜色和图的 z 值之间的关系
  • 同时仍然使用整个颜色条范围

在上图中,我想缩放 c 轴以显示相关 z 的值:

z | c-axis
----------
8 | 8/100
6 | 6/100
4 | 4/100
. | ...

函数caxis ,据我所知,不适合这里,因为它只会显示 z 轴的一个子部分的颜色,而不是整个 z 轴的颜色。

奖励问题:如何将颜色映射和颜色条缩放为 X、Y 和/或 Z 的函数?

最佳答案

[ X, Y, Z ] = peaks( 30 );
figure( 101 );
surfc( X, Y, Z );
zlabel( 'Absolute Values' );
%
Z_Scl = 0.01;
Z_Bar = linspace( min(Z(:)), max(Z(:)), 10 );
%
colormap jet;
c = colorbar( 'Location', 'EastOutside', ...
'Ticks', Z_Bar, 'TickLabels', cellstr( num2str( Z_Bar(:)*Z_Scl, '%.3e' ) ) );
ylabel( c, 'Relative Values' );

MATLAB Colorbar - Scaled Colorbar - Version 1

对于 z 值和颜色条之间的任意映射,可以结合 surf , contourfcontour如下(灵感来自 these two 很棒的答案):

[ X, Y, Z ] = peaks( 30 ); % Generate data
CB_Z = (sin( Z/max(Z(:)) ) - cos( Z/max(Z(:)) )).^2 + X/5 - Y/7; % Generate colormap
CF_Z = min( Z(:) ); % Calculate offset for filled contour plot
CR_Z = max( Z(:) ); % Calculate offset for contour plot
%
figure( 102 ); % Create figure
clf( 102 );
hold on; grid on; grid minor; % Retain current plot and create grid
xlabel( 'x' ); % Create label for x-axis
ylabel( 'y' ); % Create label for y-axis
zlabel( 'Scaling 1' ); % Create label for z-axis
surf( X, Y, Z, CB_Z ); % Create surface plot
%
CF_H = hgtransform( 'Parent', gca ); % https://stackoverflow.com/a/24624311/8288778
contourf( X, Y, CB_Z, 20, 'Parent', CF_H ); % Create filled contour plot
set( CF_H, 'Matrix', makehgtform( 'translate', [ 0, 0, CF_Z ] ) ); % https://stackoverflow.com/a/24624311/8288778
%
CR_H = hgtransform( 'Parent', gca ); % https://stackoverflow.com/a/24624311/8288778
contour( X, Y, CB_Z, 20, 'Parent', CR_H ); % Create contour plot
set( CR_H, 'Matrix', makehgtform( 'translate', [ 0, 0, CR_Z ] ) ); % https://stackoverflow.com/a/24624311/8288778
%
colormap jet; % Set current colormap
CB_H = colorbar( 'Location', 'EastOutside' ); % Create colorbar
caxis( [ min( CB_Z(:) ), max( CB_Z(:) ) ] ); % Set the color limits for the colorbar
ylabel( CB_H, 'Scaling 2' ); % Create label for colorbar

MATLAB Surf Contourf Contour Colorbar

关于MATLAB Colorbar - 相同的颜色,缩放值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45285114/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com