Improve a scattering plot: How to make it clearer?

1 次查看(过去 30 天)
I'm plotting a bifurcation diagram, but I'm getting a non-clear plot. I would like to make smaller markers in this plot to improve visualization, how could I do this? I'm pretty newbie in Matlab, thefore sorry if this question is too obvious. Also, I would like to plot the ticks using LaTeX fonts, is there any way to do this?
My plotting code:
figure(41)
plot(intervala, stablex,'.', 'color', 'k', 'MarkerSize', .5); hold on; axis([0 1.25 -2.5 2.5]); hold off; %axis square;
xlabel('$$a$$');
ylabel('$$X$$');
The produced picture:
Thanks in advance!
  1 个评论
SrinivasHarsha
SrinivasHarsha 2022-4-26
Hi Image Analyst,
we need a help from you
can you send a response to my mail if possible.
we will contact you reg: image processing help
my mail id: srinivas.nato@gmail.com

请先登录,再进行评论。

采纳的回答

Star Strider
Star Strider 2022-4-25
The LaTeX tick labels simply require specifying TickLabelInterpreter = 'latex'
xlabel('$$a$$', 'Interpreter','latex');
ylabel('$$X$$', 'Interpreter','latex');
Ax = gca;
Ax.XAxis.TickLabelInterpreter = 'latex';
Ax.YAxis.TickLabelInterpreter = 'latex';
For the markers, see the MarkerSize name-value pair.
.
  2 个评论
Wayner Klën
Wayner Klën 2022-4-25
编辑:Wayner Klën 2022-4-25
Thank you for your answer. Is there a specific way to define latex as global interpreter?
Star Strider
Star Strider 2022-4-25
My pleasure!
See Default Property Values then experiment. I am reasonably certain that this is possible, however I have never done it since I have no reason to. Also see Graphics Object Properties for a list of them.

请先登录,再进行评论。

更多回答(1 个)

Image Analyst
Image Analyst 2022-4-25
If youi use the plot tools (above the upper right corner of your plot box) can you zoom in and see the lines clearer? That may be what you have to do.
  1 个评论
SrinivasHarsha
SrinivasHarsha 2022-4-26
Hi Image Analyst,
we need a help from you
can you send a response to my mail if possible.
we will contact you reg: image processing help
my mail id: srinivas.nato@gmail.com

请先登录,再进行评论。

类别

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

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by