[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug in scatter() in 3.6.2 ?
From: |
Eric Chassande-Mottin |
Subject: |
bug in scatter() in 3.6.2 ? |
Date: |
Tue, 22 Jan 2013 01:57:46 -0800 (PST) |
hi,
I think I've found a bug in scatter()
N=100; a=rand(1,N); b=rand(1,N); c=ones(1,N); scatter(a,b,20,c,"filled");
gives no error while
N=101; a=rand(1,N); b=rand(1,N); c=ones(1,N); scatter(a,b,20,c,"filled");
error: invalid value for color property "markerfacecolor"
error: called from:
error: /usr/share/octave/3.6.2/m/plot/private/__scatter__.m at line 274,
column 11
error: /usr/share/octave/3.6.2/m/plot/private/__scatter__.m at line 211,
column 13
error: /usr/share/octave/3.6.2/m/plot/scatter.m at line 71, column 11
note that
N=101; a=rand(1,N); b=rand(1,N); c=rand(1,N); scatter(a,b,20,c,"filled");
works fine.
version
ans = 3.6.2
I've tried to track the bug down by making a local copy of __scatter__.m and
scatter.m
but the local copies don't find the other private functions.
eric
--
View this message in context:
http://octave.1599824.n4.nabble.com/bug-in-scatter-in-3-6-2-tp4649033.html
Sent from the Octave - General mailing list archive at Nabble.com.
- bug in scatter() in 3.6.2 ?,
Eric Chassande-Mottin <=
- Re: bug in scatter() in 3.6.2 ?, Juan Pablo Carbajal, 2013/01/22
- Re: bug in scatter() in 3.6.2 ?, Andreas Weber, 2013/01/22
- Re: bug in scatter() in 3.6.2 ?, Eric Chassande-Mottin, 2013/01/22
- Re: bug in scatter() in 3.6.2 ?, Ben Abbott, 2013/01/22
- Re: bug in scatter() in 3.6.2 ?, Ben Abbott, 2013/01/22
- Re: bug in scatter() in 3.6.2 ?, Andreas Weber, 2013/01/22
- Re: Re: bug in scatter() in 3.6.2 ?, John W. Eaton, 2013/01/22
- Re: bug in scatter() in 3.6.2 ?, Ben Abbott, 2013/01/22
- Re: bug in scatter() in 3.6.2 ?, John W. Eaton, 2013/01/22