我有一个奇怪(可能简单的解决)问题。 我尝试(使用面板)两个地块绘制:
a1 = subplot(2,1,1, 'Parent', handles.cpd_plot, 'Position', [0.1, 0.4, 0.85, 0.45]);
a2 = subplot(2,1,2, 'Parent', handles.cpd_plot, 'Position', [0.1, 0.1, 0.85, 0.15]);
但绘制A2后,A1消失。 我看到它的一些问题与位置,当我抬起A1一个位( 'Position', [0.1, 0.5, 0.85, 0.45]
其工作(但它必须是> = 0.5)。 问题出在哪儿? 谢谢!