help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

title is slow for a big data set


From: Shaun Jackman
Subject: title is slow for a big data set
Date: Fri, 27 Jun 2008 13:31:49 -0700
User-agent: Thunderbird 2.0.0.14 (X11/20080421)

When plotting a big data set, the title and label commands take as long as the original plot to run:

plot(bigdata)
title t % takes a long time
xlabel x % and me
ylabel y % and me

Is there a way to disable rendering the plot until after I'm done -- which could be useful for other situations too:
render off
plot(bigdata)
title t
xlabel x
ylabel y
render now

If I move the title and label commands before the plot, the plot clears the labels I just finished setting:
title t
xlabel x
ylabel y
plot(bigdata) % erases the labels

I can use `hold' as a work around:
title t
xlabel x
ylabel y
hold on
plot(bigdata)
hold off

Any other suggestions?

Cheers,
Shaun


reply via email to

[Prev in Thread] Current Thread [Next in Thread]