我想在GUI中的特定轴上绘制带annotation
的箭头。
目前我有两个轴的GUI:
我已经可以在我的GUI中绘制一个箭头到axis2,但不能选择一个箭头。 我的代码到目前为止:
如何将注释拟合到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);