Ben Abbott | 1 Jan 2011 21:48
Picon

[bug #32022] 2nd legend command does not replace the first

Please use the bug tracker to post updates to a bug report.  The mailing list is intended as a read-only
notification stream.  Info posted to this mailing list address won't appear in the tracker database where
it is most useful.

URL:
  <http://savannah.gnu.org/bugs/?32022>

                 Summary: 2nd legend command does not replace the first
                 Project: GNU Octave
            Submitted by: bpabbott
            Submitted on: Sat 01 Jan 2011 03:48:46 PM EST
                Category: Plotting with OpenGL
                Severity: 3 - Normal
                Priority: 5 - Normal
              Item Group: Incorrect Result
                  Status: None
             Assigned to: None
         Originator Name: Ben Abbott
        Originator Email: 
             Open/Closed: Open
         Discussion Lock: Any
                 Release: dev
        Operating System: Mac OS

    _______________________________________________________

Details:

The commands below, demonstrate two problems.

(Continue reading)

Ben Abbott | 1 Jan 2011 21:51
Picon

[bug #32022] 2nd legend command does not replace the first

Please use the bug tracker to post updates to a bug report.  The mailing list is intended as a read-only
notification stream.  Info posted to this mailing list address won't appear in the tracker database where
it is most useful.

Follow-up Comment #1, bug #32022 (project octave):

I've attached a pdf illustrating the problem. 

(file #22331)
    _______________________________________________________

Additional Item Attachment:

File name: legend.pdf                     Size:3 KB

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?32022>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/

Rick T | 1 Jan 2011 23:12
Picon

[bug #32023] correct screen doesn't show up show up tia sal22

Please use the bug tracker to post updates to a bug report.  The mailing list is intended as a read-only
notification stream.  Info posted to this mailing list address won't appear in the tracker database where
it is most useful.

URL:
  <http://savannah.gnu.org/bugs/?32023>

                 Summary: correct screen doesn't show up show up tia sal22
                 Project: GNU Octave
            Submitted by: ratulloch
            Submitted on: Sat 01 Jan 2011 10:12:02 PM GMT
                Category: None
                Severity: 3 - Normal
                Priority: 5 - Normal
              Item Group: Incorrect Result
                  Status: None
             Assigned to: None
         Originator Name: Rick T
        Originator Email: 
             Open/Closed: Open
         Discussion Lock: Any
                 Release: 3.2.3
        Operating System: GNU/Linux

    _______________________________________________________

Details:

I try to run the m file and I get this error

(Continue reading)

Ben Abbott | 2 Jan 2011 05:16
Picon

[bug #32023] correct screen doesn't show up show up tia sal22

Please use the bug tracker to post updates to a bug report.  The mailing list is intended as a read-only
notification stream.  Info posted to this mailing list address won't appear in the tracker database where
it is most useful.

Update of bug #32023 (project octave):

                Category:                    None => Plotting               
                  Status:                    None => Fixed                  

    _______________________________________________________

Follow-up Comment #1:

Octave does not yet have support for ui objects. Thus, Octave will not be
able to run your script. However, the error you've encountered is a bug which
has already been fixed in the developers sources.

See the changes for Dec 2010 at the link below.

http://hg.savannah.gnu.org/hgweb/octave/log/da51bc237526/scripts/plot/view.m

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?32023>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/
(Continue reading)

Jaroslav Hajek | 2 Jan 2011 12:35
Picon

[bug #32012] isnumeric() incorrectly reports true for sparse logical matrices

Please use the bug tracker to post updates to a bug report.  The mailing list is intended as a read-only
notification stream.  Info posted to this mailing list address won't appear in the tracker database where
it is most useful.

Update of bug #32012 (project octave):

                  Status:                    None => Fixed                  
             Assigned to:                    None => highegg                
             Open/Closed:                    Open => Closed                 

    _______________________________________________________

Follow-up Comment #1:

Fix is uploaded, thx.

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?32012>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/

Jaroslav Hajek | 2 Jan 2011 12:57
Picon

[bug #31974] Interpreter fails to create complex numbers with Inf complex parts

Please use the bug tracker to post updates to a bug report.  The mailing list is intended as a read-only
notification stream.  Info posted to this mailing list address won't appear in the tracker database where
it is most useful.

Follow-up Comment #17, bug #31974 (project octave):

It is also possible that Matlab changed the behavior of real*complex just to
make this thing work. I would advise to avoid doing such a general (and kinda
stupid) change and only implement the constant folding optimization as
suggested by JWE, i.e. a+b*i  -> complex(a, b) where a, b are scalar
constants, because that's what most people mean. Don't change anything else.
It does mean a sort of inconsistency, but not quite, because we can say that
the expression is simply parsed as a constant.

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?31974>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/

Ben Abbott | 3 Jan 2011 03:14
Picon

[bug #32022] 2nd legend command does not replace the first

Please use the bug tracker to post updates to a bug report.  The mailing list is intended as a read-only
notification stream.  Info posted to this mailing list address won't appear in the tracker database where
it is most useful.

Update of bug #32022 (project octave):

                  Status:                    None => Ready For Test         
             Assigned to:                    None => bpabbott               

    _______________________________________________________

Follow-up Comment #2:

I've pushed a changeset. I'll leave the item open for testing.

    http://hg.savannah.gnu.org/hgweb/octave/rev/1f54ee6760b5

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?32022>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/

John W. Eaton | 3 Jan 2011 08:02
Picon

[bug #31974] Interpreter fails to create complex numbers with Inf complex parts

Please use the bug tracker to post updates to a bug report.  The mailing list is intended as a read-only
notification stream.  Info posted to this mailing list address won't appear in the tracker database where
it is most useful.

Follow-up Comment #18, bug #31974 (project octave):

What does Matlab do for

function f (x, y)
  x * y
  x / y
end

f (Inf, i)

If it produces 0+Infi and 0-Infi, then this is not limited to constant
folding, so we have to implement the special case in the operators that might
be affected.  I would guess this includes *, .*, /, ./, , and . for mixed real
and complex cases for scalar by scalar and scalar by array operations for both
double and single values.  Or, we can use a class derived from std::complex
that implements the special cases we want.  Using a derived class like this
would probably require fewer changes to Octave since we already have Complex
and FloatComplex typedefs, but then it would mean that anywhere the class is
used, we get the special behavior, and I'm not sure that's really what we
want.

In any case, I think this change should wait until after 3.4 is released.

    _______________________________________________________

(Continue reading)

Tatsuro MATSUOKA | 3 Jan 2011 08:48
Picon

[bug #32033] error: `fnmatch' undefined (octave-dev on MinGW)

Please use the bug tracker to post updates to a bug report.  The mailing list is intended as a read-only
notification stream.  Info posted to this mailing list address won't appear in the tracker database where
it is most useful.

URL:
  <http://savannah.gnu.org/bugs/?32033>

                 Summary: error: `fnmatch' undefined (octave-dev on MinGW)
                 Project: GNU Octave
            Submitted by: tmacchant
            Submitted on: 2011年01月03日 07時48分09秒
                Category: Interpreter
                Severity: 3 - Normal
                Priority: 5 - Normal
              Item Group: Incorrect Result
                  Status: None
             Assigned to: None
         Originator Name: 
        Originator Email: 
             Open/Closed: Open
         Discussion Lock: Any
                 Release: dev
        Operating System: Microsoft Windows

    _______________________________________________________

Details:

In the fntests on octave-dev source (3.3.54+ on Jan 1, 2011), I have met
errors,
(Continue reading)

John W. Eaton | 3 Jan 2011 09:10
Picon

[bug #32033] error: `fnmatch' undefined (octave-dev on MinGW)

Please use the bug tracker to post updates to a bug report.  The mailing list is intended as a read-only
notification stream.  Info posted to this mailing list address won't appear in the tracker database where
it is most useful.

Follow-up Comment #1, bug #32033 (project octave):

This looks like Octave is telling you that its fnmatch function is not
available, but I don't see how that could happen.  The fnmatch function is
defined in dirfns.cc, and is always defined as far as I can tell.

What happens if you start Octave and type

  fnmatch ("f*", "foo")

at the command prompt?

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?32033>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/


Gmane