octave-bug-tracker
[Top][All Lists]
Advanced

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

[Octave-bug-tracker] [bug #64364] scatter does not respect hold


From: Markus Mützel
Subject: [Octave-bug-tracker] [bug #64364] scatter does not respect hold
Date: Wed, 28 Jun 2023 12:50:44 -0400 (EDT)

Update of bug #64364 (project octave):

                  Status:                    None => Need Info              

    _______________________________________________________

Follow-up Comment #1:

I'm not sure what you are trying to say. Both the image as well as the scatter
"dot" are displayed in the same axes after I run your example here. So, `hold
on` is working afaict.

If you'd like to retain the color limits after the image is displayed, set the
"climmode" to manual:

x = 0:10;
y = 0:2:10;
clf; hold on
imagesc(x, y, x'*y/1000) ;
set(gca, 'climmode', 'manual');
get(gca, 'clim')
scatter (6, 8, "r", "filled");
get(gca, 'clim')


For general support questions, the Discourse forum might be the better place
to ask: https://octave.discourse.group/

If you still think there is a bug, could you please elaborate a bit which
aspect is not working as expected?



    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?64364>

_______________________________________________
Message sent via Savannah
https://savannah.gnu.org/




reply via email to

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