Plotting >500 curves verry slow since new plotting mode appeared?
이전 댓글 표시
I have been plotting many 1000 curves (double with ~32000 points in each line) in matlab with regular "plot" function and have recently experienced that it is very slow. I have increased Java Heap memory to 4 GB but it doesnt help .
I have a vage memory that the shift happened around the same time that the new plot features appeared, ie the tools in the right top corner. Could this be the reason? if so is there any way of forcing some plots to use the old method?
댓글 수: 3
Steven Lord
2020년 11월 2일
With 1000 curves on a single figure, I'd imagine that picture would be difficult to interpret. Do you actually need all 1000 curves to be on the same figure and/or open at the same time?
Micke Malmström
2020년 11월 9일
Micke Malmström
2021년 2월 17일
채택된 답변
추가 답변 (1개)
Ameer Hamza
2020년 11월 2일
Try disabling the toolbar
ax = axes();
ax.Toolbar = [];
Also, try disabling the interactions if you don't need it: https://www.mathworks.com/help/matlab/ref/disabledefaultinteractivity.html
카테고리
도움말 센터 및 File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!