如何使用MATLAB中的“线”或“注释”对象在轴外绘制对象?

时间:2019-06-19 15:20:48

标签: matlab plot properties annotations matlab-figure

我想在MATLAB图形中轴外的每个数据点上创建一条带有圆形标记的线,类似于

line([x1 x2],[y1 y2],'Color','k','Marker','o')

会产生。

要将线对象放置在轴外,我只是尝试使用annotation

annotation('line',phi1([x1 x2]),phi2([y1 y2]),'Color','k','Marker','o')

其中phi1phi2是适当的坐标转换,以将坐标xy拟合在当前图形的轴内。

由于行对象具有marker属性,所以我希望它能起作用。但是,对于annotation,我收到以下错误消息:

Error using matlab.graphics.shape.Line/set
There is no Marker property on the Line class.

Error in matlab.graphics.chart.internal.ctorHelper (line 8)
    set(obj, pvpairs{:});

Error in matlab.graphics.shape.Line

Error in annotation (line 128)
        h = matlab.graphics.shape.Line(aargs{:});

类似地,使用annotation函数绘制矩形时,不能设置Curvature属性。 annotation似乎不支持这些类型的属性,即使它像linerectangle函数那样创建线或矩形对象也是如此。我尝试摆弄注释句柄和子项,但在那里没有成功。

有任何解决方法的想法吗?

1 个答案:

答案 0 :(得分:6)

different types of annotation objects是一组单独的类类型,而不是通常的linerectangle对象,支持减少的属性集。例如,典型的line对象的类别类型为matlab.graphics.primitive.Line,而注释行对象的类别类型为matlab.graphics.shape.Line

您可以简单地将linerectangle对象的annotation设置为'off',而不使用'Clipping' property对象,以允许它们在外部单独渲染轴限制。例如,这段代码:

hAxes = subplot(1, 2, 1);
axis(hAxes, [0 1 0 1]);    % Freeze axis limits
hLine = line([0.5 2], [0.5 0.5], 'Color', 'k', ...
                                 'Marker', 'o', ...
                                 'Clipping', 'off');
hRect = rectangle(hAxes, 'Position', [1.5 0.1 1 0.25], ...
                         'Curvature', [0.2 0.2], ...
                         'FaceColor', 'r', ...
                         'Clipping', 'off');

生成此图:

enter image description here

或者,您可以通过将'Clipping' property设置为'off',关闭轴的所有对象的剪切。