Annotation Help For Figure

版本 2.0.0.0 (1.5 KB) 作者: NAVNEET GARG
creates a temporarily graphical axis on the given figure for easy annotation.
25.0 次下载
更新时间 2017/8/7

查看许可证

This submission creates the graphical axis on the figure so that one is able to draw accurate annotation.
This file is intended for technical writers, PhD scholars, scientists, etc, who want to annotate their figures precisely.
Usage: annotateHelp
For example:
% Draw the desired plots in which we want to add annotation
figure(1)
N = 10;
plot(1:N,(1:N)+1/4)
plot(1:N,(1:N)+2/4)
plot(1:N,0.5*(1:N)+1/4)
plot(1:N,0.5*(1:N)+2/4)
% run the following command, and draw ellipse and textarrow
annotateHelp
% add your annotations
annotation('ellipse',[8 7 0.5 1]/10)
annotation('textarrow',[6 8]/10,[8 8]/10,'string','first group')
annotation('ellipse',[8 4 0.5 1]/10)
annotation('textarrow',[8.25 8.25]/10,[3 4]/10,'string','second group')

% After successful annotations are complete, remove or comment the line
% containing the annotateHelp command.

引用格式

NAVNEET GARG (2024). Annotation Help For Figure (https://www.mathworks.com/matlabcentral/fileexchange/63856-annotation-help-for-figure), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2016a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Graphics Objects 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
版本 已发布 发行说明
2.0.0.0

Added (x,y) coordinates at every intersection for easy annotation.

1.0.0.0