From: Eli Melaas on
Hello,

Whenever I produce a figure and try to add some additional information to the figure (i.e., a legend, linear fit, etc.) a blank screen with axes pops up over my existing graph and fails to add the requested information. Any ideas what may be causing this?

Thanks!
From: ImageAnalyst on
Put the statement
hold on;
after your first plot (or whatever) to that axes.
This will prevent subsequent stuff from blowing away your first plot.
From: Eli Melaas on
ImageAnalyst <imageanalyst(a)mailinator.com> wrote in message <c42aca77-a5be-4b2c-aada-0dbf28d10bbc(a)i10g2000yqh.googlegroups.com>...
> Put the statement
> hold on;
> after your first plot (or whatever) to that axes.
> This will prevent subsequent stuff from blowing away your first plot.

Thanks!