Why does it take MATLAB a long time to plot 150x1800 data?
이전 댓글 표시
I have the following data in my workspace:
X: 1x1800 double
Y: 150x1800 double
Why does it take a long time for me to plot this:
>> figure; hold on
>> for n=1:150
>> plot(X,Y);
>> hold on
>> end
Furthermore, MATLAB will freeze when I try to interact with the figure that is generated
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Creating, Deleting, and Querying Graphics Objects에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!