使用Matlab GUI,在特定轴上绘制带注释的箭头

时间:2018-06-02 09:17:17

标签: matlab annotations matlab-guide multiple-axes

我想在GUI中的特定轴上绘制带annotation的箭头。

目前我有两个轴的GUI:

enter image description here

我已经可以在我的GUI中绘制一个箭头到axis2,但不能选择一个箭头。 我的代码到目前为止:

enter image description here

如何将注释拟合到axes1而不是tpo axis2?

arrow_p1 = [0.5 1]; % Startpunkt x1,y1
arrow_p2 = [0 -1]; % Breite des Pfeils = 0 und Länge des Pfeils mit Richtung -1 (nach unten)

h=annotation('textarrow','String','Mat. Fluss '); % arrow, doublearrow, textarrow

set(h,'parent', gca, 'position', [arrow_p1,arrow_p2], ... 
'HeadLength', 5, 'HeadWidth', 5, 'HeadStyle', 'vback2', ...
'Color', [0 0 0], 'LineWidth', 0.5);

0 个答案:

没有答案