Filter löschen
Filter löschen

removing edges (fractures) from lines

4 Ansichten (letzte 30 Tage)
math_man_rob
math_man_rob am 21 Feb. 2022
Beantwortet: Neelanshu am 5 Feb. 2024
Dear fellows,
I try to export some plots as png files. But sadly all of them have these kind of edges within.
How can I remove these? Or avoid them?
  4 Kommentare
math_man_rob
math_man_rob am 21 Feb. 2022
Shivam
Shivam am 6 Jan. 2024
Can you mention the settings done through "Property Inspector"?

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Neelanshu
Neelanshu am 5 Feb. 2024
Hi math_man_rob,
I understand from your query that you are interested in removing the edges in the exported plots.
The issue you're experiencing might be related to the renderer, if you switch to the "painters" renderer the issue goes away as shown in the image attached below. This option works well for axes in a 2-D view. Furthermore, you can use "GraphicsSmoothing" to reduce the appearance of jagged lines in an axes graphic.
%% Using opengl renderer
plot([-10 :0.01 : 10], [-10 :0.01 : 10].^2)
set(gcf, 'Renderer', 'opengl');
exportgraphics(gcf, 'filename.png', 'Resolution', 1200);
%% Using painters renderer
plot([-10 :0.01 : 10], [-10 :0.01 : 10].^2)
set(gcf, 'Renderer', 'painters', 'GraphicsSmoothing', 'on');
exportgraphics(gcf, 'filename.png', 'Resolution', 1200);
Kindly provide the code and configuration of "Property Inspector" used for generation of the above plots for further help.
Besides, a set of user contributed functions, available at the MATLAB Central File Exchange, can be used to assist you with exporting graphics:
A collection of 4 functions to make it easier to export figures for publication can be found at:
You may also refer to the following MATLAB Answers post to learn more about exporting images of publication quality:
Hope this helps.

Kategorien

Mehr zu Printing and Saving finden Sie in Help Center und File Exchange

Produkte


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by