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

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

[Octave-bug-tracker] [bug #50683] disp() for cell arrays should not have


From: Kai Torben Ohlhus
Subject: [Octave-bug-tracker] [bug #50683] disp() for cell arrays should not have initial newline
Date: Wed, 5 Apr 2017 04:09:06 -0400 (EDT)
User-agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36

Update of bug #50683 (project octave):

                  Status:               Confirmed => Fixed                  

    _______________________________________________________

Follow-up Comment #1:

Agree, can you confirm, that the cset
https://hg.savannah.gnu.org/hgweb/octave/rev/7dc148266dca solves this issue?


>> x = {1;2;3}
x = {
  [1,1] =  1
  [2,1] =  2
  [3,1] =  3
}
>> disp (x)
{
  [1,1] =  1
  [2,1] =  2
  [3,1] =  3
}
>> display (x)
x = {
  [1,1] =  1
  [2,1] =  2
  [3,1] =  3
}
>> y = [1;2;3]
y =

   1
   2
   3

>> disp (y)
   1
   2
   3
>> display (y)
y =

   1
   2
   3



    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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