highlight plot with circle

1 次查看(过去 30 天)
I have a ber plot and I want to highlight this plot with a circle or any eliptical shape indicating (M×N).
  2 个评论
Awais Saeed
Awais Saeed 2021-8-22
What do you mean by higlighting with circle. Do you mean like this
mudasir ahmad sheikh
No! Please see the attached figure

请先登录,再进行评论。

采纳的回答

Awais Saeed
Awais Saeed 2021-8-22
I do not know if its possible programmatically but you can acheive this using the Insert option of figure window

更多回答(1 个)

Image Analyst
Image Analyst 2021-8-22
You can draw an ellipse if you know the center and radii:
xCenter = 12.5;
yCenter = 10;
xRadius = 2.5;
yRadius = 8;
theta = 0 : 0.01 : 2*pi;
x = xRadius * cos(theta) + xCenter;
y = yRadius * sin(theta) + yCenter;
plot(x, y, 'LineWidth', 3);
axis square;
xlim([0 20]);
ylim([0 20]);
grid on;
If you have an existing plot, call hold on before plotting the ellipse so it doesn't blow away your prior plotted data.

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by