Why does it take MATLAB a long time to plot 150x1800 data?
Show older comments
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
Accepted Answer
More Answers (0)
Categories
Find more on Graphics Objects in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!