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

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

[Octave-bug-tracker] [bug #33383] Cell array of objects missing cell ele


From: Nicholas Jankowski
Subject: [Octave-bug-tracker] [bug #33383] Cell array of objects missing cell element labels
Date: Thu, 8 Dec 2016 04:04:06 +0000 (UTC)
User-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0

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

behavior still the same in 4.2.0.  


>> c = {"string", ones(2)}
c =
{
  [1,1] = string
  [1,2] =

     1   1
     1   1

}
>> c = {"string", ftp("ftp.gnu.org")}
c =
{
  [1,1] = string
FTP Object
 host: ftp.gnu.org
 user: anonymous
  dir: /
 mode: binary
}


and as mentioned below Matlab displays things in an entirely different
manner:


>> c = {'string',ones(2)}
c =
  1×2 cell array
    'string'    [2×2 double]
>> c = {'string', ftp('ftp.gnu.org')}
c =
  1×2 cell array
    'string'    [1×1 ftp]


    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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