绘制以方括号结尾的线条

Plot lines that end with a square bracket

我的目标:绘制一条水平线,并以方括号 (---]) 结束。

我通常用

绘制水平线
line([0,1],[2,2],'linestyle',':')

我可以在最后添加常用的标记

plot([0,1],[2,2],'o')

但不是方括号。

有什么建议吗?

我认为最简单的选择是 text 命令:

l = line([0,1],[2,2],'linestyle',':');
text(l.XData(end),l.YData(end),']','VerticalAlignment','middle',...
    'FontSize',12,'FontWeight','bold','Color',l.Color)

你可以更进一步,添加一个旋转:

x = 0:0.1:0.5*pi;
p = plot(x,cos(x)+1.5,'--r');
text(p.XData(end),p.YData(end),']','VerticalAlignment','middle',...
    'Rotation',atand(diff(p.YData(end-1:end))/diff(p.XData(end-1:end))),...
    'FontSize',12,'FontWeight','bold','Color',p.Color)

轮换并不完美,但这是一个好的开始。这是结果:


编辑:

对于 2014b 之前的 Matlab 版本,您需要使用 get 函数:

l = line([0,1],[2,2],'linestyle',':');
x = get(l,'XData');
y = get(l,'YData');
text(x(end),y(end),']','VerticalAlignment','middle',...
      'FontSize',12,'FontWeight','bold','Color',l.Color)

这是一个有点达到你想要的效果的可怕技巧:

XVALS = [0,1; 0,2; 0,3].';
YVALS = [3 3; 2,2; 1,1].';
INVIZ_OFFSET = 0.04;
figure(); 
% Step 1: Plot squares:
plot(XVALS(2,:), YVALS(2,:),'bs');
% Step 2: Plot invisible squares:
hold on;
plot(XVALS(2,:)-INVIZ_OFFSET, YVALS(2,:),'ws','MarkerFaceColor','w');
% Step 3: Plot lines
plot(XVALS, YVALS,':b');

% Play with limits:
axis image; xlim([0,5]); ylim([0,4]);

结果:

想法是可以使用模糊的方形标记获得 "bracket" 标记。显然这并不适合所有地块,但我认为您可以从这里开始工作...