How do I improve the quality of my plots?

1 visualización (últimos 30 días)
Yami
Yami el 30 de Mzo. de 2022
Respondida: Rahul Singhal el 20 de Abr. de 2022
I'm adding figures to a matlab report with the following code:
import mlreportgen.report.*
fig = [f1, f2, f3]
ch = Chapter('Name of the chapter');
for i = 1:3
Fig = mlreportgen.report.Figure(fig(i));
add(ch,Fig);
end
Report generator creates a pdf file with the figures. The problem is that for some plots (like the second one), the quality is really poor.
Does anyone have an idea why this is happening?
Thank you!

Respuestas (1)

Rahul Singhal
Rahul Singhal el 20 de Abr. de 2022
Can you check by setting the Figure reporter's SnapshotFormat to be SVG or PDF, if that helps
Fig = mlreportgen.report.Figure(fig(i));
Fig.SnapshotFormat = "svg";
% Fig.SnapshotFormat = "pdf";

Categorías

Más información sobre Specifying Target for Graphics Output en Help Center y File Exchange.

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by