[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Octave-bug-tracker] [bug #60304] Error using scatter & refreshdata
From: |
Simon Morisset |
Subject: |
Re: [Octave-bug-tracker] [bug #60304] Error using scatter & refreshdata |
Date: |
Mon, 29 Mar 2021 15:50:40 -0000 |
Yes it's working!
Thanks a lot!
Regards
Simon
-----Message d'origine-----
De : Markus Mützel [mailto:INVALID.NOREPLY@gnu.org]
Envoyé : 29 mars 2021 11:30
À : Markus Mützel <markus.muetzel@gmx.de>; Simon Morisset
<Simon.Morisset@as.ulaval.ca>; octave-bug-tracker@gnu.org
Objet : [bug #60304] Error using scatter & refreshdata
[Externe UL*]
Update of bug #60304 (project octave):
Status: None => Invalid
Open/Closed: Open => Closed
_______________________________________________________
Follow-up Comment #1:
As you can see when querying `get(s, "cdata")`, the "cdata" property is a
column vector.
If `Val_C` in your example is set to a column vector instead of a row vector,
the example works without error:
clear all
close all
f=figure;
s=scatter(1:10,1:10,100,1:10,'filled');
set(s,'XDataSource','Val_X');
set(s,'YDataSource','Val_Y');
set(s,'CDataSource','Val_C');
Val_X=(1:10).';
Val_Y=(1:10).';
Val_C=(1:10).';
refreshdata(f)
If you need help coding, please use one of the channels listed here:
https://www.gnu.org/software/octave/support
_______________________________________________________
Reply to this item at:
<https://savannah.gnu.org/bugs/?60304>
_______________________________________________
Message sent via Savannah
https://savannah.gnu.org/
*ATTENTION : L’émetteur de ce courriel est externe à l’Université Laval.
Évitez de cliquer sur un hyperlien, d’ouvrir une pièce jointe ou de transmettre
des informations si vous ne connaissez pas l’expéditeur du courriel. En cas de
doute, contactez l’équipe de soutien informatique de votre unité ou
hameconnage@ulaval.ca.
________________________________
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- Re: [Octave-bug-tracker] [bug #60304] Error using scatter & refreshdata,
Simon Morisset <=