[m2_array, ~ , ~] = F_readBin('amb.bin');
amb = m2_array(:,:,lat);
surfc(light,'LineWidth',0.001);
ylim([1 24]); xlim([1 size(light,2)]); title(['@ ',num2str(lat),'°N']);
xticks([0:50:size(m2_array,2)]);
labels=cellstr(num2str((day_start:50:day_end)')); xticklabels(labels);
xlabel('Season days'); ylabel('Daytime{[hours]}');zlabel('surface light
[\mumol m^2 s^-^1]')
colormap winter;
然而,我能找到的所有解决方案,例如yyaxis似乎仅适用于2D图。 是否有冲浪,网状,冲浪地块的工作?
答案 0 :(得分:9)
不确定这是否是您正在寻找的,但我想将辅助轴添加到3D绘图的基本方法与2D相同(据我所知,matlab中的2D绘图只是一个3D - 从上面看情节。)
这个想法是你在第一组轴上放置第二组轴,然后调整它以满足你的要求,例如:通过隐藏未使用的轴并使辅助背景透明。这在Matlab文档here中进行了解释。
对于3D,这有点棘手,因为默认的轴和标签位置,但undocumentedmatlab来到救援的地方。使用FirstCrossOverValue
'的SecondCrossoverValue
和Axes
属性NumericRuler
个对象(XAxis
,YAxis
,ZAxis
),我们可以将辅助轴定位在所需的位置。
基本思想如下例所示。这是针对z轴的,但y或x可以使用相同的方法。
clear; close all; clc
% Dummy data from matlab example
[X,Y,Z] = peaks(25);
% Primary axes with some arbitrary viewpoint and labels
hs = surf(X,Y,Z); % Get surface object
ha = hs.Parent; % Get parent Axes
ha.View = [25, 40]; % Set arbitrary view point
xlabel 'xa';
ylabel 'ya';
zlabel 'za';
grid on
% Secondary axes on top of primary, using same view point
hb = axes('view',ha.View);
hb.ZLim = [0 7]; % Arbitrary axis limits
zlabel 'zb';
% Hide secondary background and x and y rulers
hb.Color = 'none'; % Transparent background
hb.XAxis.Visible = 'off';
hb.YAxis.Visible = 'off';
% Move z-ruler to opposite corner (from undocumentedmatlab)
hb.ZAxis.FirstCrossoverValue = 1; % x-location of z-ruler [normalized]
hb.ZAxis.SecondCrossoverValue = 1; % y-location of z-ruler [normalized]
请注意,当您开始手动旋转轴或放大或缩小轴时,此基本示例会出现故障。您需要添加一些将两个轴链接在一起的方法,以便处理它。
答案 1 :(得分:6)
如the answer from Dennis所示,您可以使用一些undocumented features来添加额外的轴。这有一些缺点,显而易见的是,未记录的功能在没有通知的情况下有变化的趋势。另外,以相同的方式(即在相对侧)添加额外的x
或y
轴将导致它被绘图遮挡并且不是非常有用。正如this question的答案所示,实现轴在一侧堆叠的效果在3D中更为理想。然而,这可能有些混乱,我还没有找到一种强有力的方法,可以很好地适应绘图中的变化(即旋转,缩放,更改限制等)。
不是添加另一个轴线,而是一个不依赖于未记录的特征的更紧凑的解决方案将是在现有的轴上捎带' tick marks,只需按新比例添加一组tick labels即可。可以使用TeX markup对附加的刻度线(和轴)标签进行着色以区分它们。
我将一些代码包装到执行此操作的原型函数中。输入是轴句柄,要修改的轴的字符串('X'
,'Y'
或'Z'
),新标度的一组新轴限制(将被映射)到当前限制),新标签的颜色(作为RGB triple),以及新axis label的字符串:
function add_scale(hAxes, axisStr, newLimits, newColor, newLabel)
% Get axis ruler to modify:
axisStr = upper(axisStr);
hRuler = get(hAxes, [axisStr 'Axis']);
% Create TeX color modification strings:
labelColor = ['\color[rgb]{' sprintf('%f ', hRuler.Label.Color) '}'];
tickColor = ['\color[rgb]{' sprintf('%f ', hRuler.Color) '}'];
newColor = ['\color[rgb]{' sprintf('%f ', newColor) '}'];
% Compute tick values for new axis scale:
tickValues = hRuler.TickValues;
limits = hRuler.Limits;
newValues = newLimits(1)+...
diff(newLimits).*(tickValues-limits(1))./diff(limits);
% Create new tick labels:
formatString = ['\' tickColor hRuler.TickLabelFormat '\\newline\' ...
newColor hRuler.TickLabelFormat '\n'];
newTicks = strsplit(sprintf(formatString, [tickValues; newValues]), '\n');
% Update tick and axis labels:
hRuler.Label.String = {[labelColor hRuler.Label.String]; ...
[newColor newLabel]};
hRuler.TickLabels = newTicks(1:(end-1));
end
以下是一个例子:
[X, Y, Z] = peaks(25);
hSurf = surfc(Z);
hAxes = gca;
ylabel('Distance (inches)');
add_scale(hAxes, 'Y', hAxes.YLim.*2.54, [1 0 0], 'Distance (cm)');
新的刻度标签(红色)添加在现有刻度标签下方,新轴标签也是如此。可以创建listeners来自动更新新标签(例如更改刻度标记时),但我还没有解决所有这些细节。