绘制以方括号结尾的线条

时间:2017-02-19 11:21:36

标签: matlab plot customization matlab-figure linestyle

我的目标:绘制一个带方括号(---])的水平线。

我通常使用

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

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

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

但不是方括号。

有什么建议吗?

2 个答案:

答案 0 :(得分:5)

这是一个可怕的黑客,有点实现你想要的东西:

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]);

结果:

enter image description here

这个想法是"括号"可以使用模糊的方形标记获得标记。显然这不适合所有情节,但我认为你可以在这里工作......

答案 1 :(得分:3)

我认为你最简单的选择是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)

轮换并不完美,但这是一个良好的开端。结果如下:

bracket end

修改

对于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)