Graphic memory managment
Ältere Kommentare anzeigen
Hello,
When UI number increases from 2003 to 2004, the graphic quality becomes very bad...some kind of bitmap translation.
figure(1);clf;ui_1 = plot(rand(2003,1),rand(2003,1),'.');grid; % GOOD
figure(2);clf;ui_2 = plot(rand(2004,1),rand(2004,1),'.');grid; % BAD
Can you help me increase this limit ? Thanks in advance.
Antworten (1)
Daniel Shub
am 29 Sep. 2011
You might want to check the renderer of the two figures
get(1, 'Renderer')
get(2, 'Renderer')
Kategorien
Mehr zu Graphics Object Properties finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!