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

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

[Octave-bug-tracker] [bug #38514] Odd parsing of empty cell {} within ma


From: Rik
Subject: [Octave-bug-tracker] [bug #38514] Odd parsing of empty cell {} within matrix [ ] definition
Date: Wed, 13 Mar 2013 23:46:12 +0000
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:19.0) Gecko/20100101 Firefox/19.0

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

                 Summary: Odd parsing of empty cell {} within matrix [ ]
definition
                 Project: GNU Octave
            Submitted by: rik5
            Submitted on: Wed 13 Mar 2013 04:46:10 PM PDT
                Category: Interpreter
                Severity: 3 - Normal
                Priority: 5 - Normal
              Item Group: None
                  Status: None
             Assigned to: None
         Originator Name: 
        Originator Email: 
             Open/Closed: Open
         Discussion Lock: Any
                 Release: dev
        Operating System: GNU/Linux

    _______________________________________________________

Details:

A null matrix, [], is filtered out when creating a new matrix.


[1, 2, [], 3, 4]

ans =

   1   2   3   4


However, a null cell, {}, causes the matrix to be re-defined as a cell.


[1, 2, {}, 3, 4]
ans = 
{
  [1,1] =  1
  [1,2] =  2
  [1,3] =  3
  [1,4] =  4
}


This seems really odd.





    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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