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

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

[Octave-bug-tracker] [bug #43683] Cell array on interpreter screen


From: José Luis García Pallero
Subject: [Octave-bug-tracker] [bug #43683] Cell array on interpreter screen
Date: Mon, 24 Nov 2014 14:28:24 +0000
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Firefox/31.0 Iceweasel/31.2.0

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

                 Summary: Cell array on interpreter screen
                 Project: GNU Octave
            Submitted by: jgpallero
            Submitted on: lun 24 nov 2014 14:28:23 GMT
                Category: Interpreter
                Severity: 3 - Normal
                Priority: 5 - Normal
              Item Group: Feature Request
                  Status: None
             Assigned to: None
         Originator Name: 
        Originator Email: 
             Open/Closed: Open
         Discussion Lock: Any
                 Release: dev
        Operating System: Any

    _______________________________________________________

Details:

Hello:

In the GNU Octave interpreter, if I create a cell array as, for example


a = {'a',1,2;'b',3,4}


I obtain on the screen the result


a =
{
  [1,1] = a
  [2,1] = b
  [1,2] =  1
  [2,2] =  3
  [1,3] =  2
  [2,3] =  4
}


But in Matlab I obtain


a = 

    'a'    [1]    [2]
    'b'    [3]    [4]


I think the Matkab's output is better than tha Octave one, as it presents the
cell array in a more intiutive form (as a matrix) than Octave.

It would be nice if GNU Octave use tha same behavior as Matlab for the cell
array on screen output




    _______________________________________________________

Reply to this item at:

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

_______________________________________________
  Mensaje enviado vía/por Savannah
  http://savannah.gnu.org/




reply via email to

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