Please Help me, How to raise the quality of the attached figure after drawing it on Matlab
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Please Help me, How to raise the quality of the attached figure after drawing it on Matlab
2 commentaires
Jan
le 28 Sep 2022
It depends, ob what you call "raised quality". Please mention, what the problem is.
Réponses (1)
Star Strider
le 28 Sep 2022
What do you want to do with it?
F = open(websave('T','https://www.mathworks.com/matlabcentral/answers/uploaded_files/1138680/T.fig'));
getF = get(F);
Kids = F.Children;
Ax = F.Children(2);
Lines = findobj(Ax, 'Type','Line');
figure
hold on
for k = 1:numel(Lines)
plot(Lines(k).XData, Lines(k).YData, 'DisplayName',Lines(k).DisplayName)
end
hold off
grid
legend('Location','best')
.
3 commentaires
Jan
le 29 Sep 2022
It is not clear to me what "raise quality" of which "format" means. What are the "tools features" of Matlab?
Voir également
Catégories
En savoir plus sur Printing and Saving dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!