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

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

[Octave-bug-tracker] [bug #49592] interval package: fix subscripted assi


From: Joel Dahne
Subject: [Octave-bug-tracker] [bug #49592] interval package: fix subscripted assignment
Date: Fri, 21 Apr 2017 05:17:50 -0400 (EDT)
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0

Follow-up Comment #2, bug #49592 (project octave):

This is related to bug #50626 which is solved. Testing with the new patch
shows that the two commands now work as intended.


octave> g = infsup(magic(3))
g = 3×3 interval matrix

   [8]   [1]   [6]
   [3]   [5]   [7]
   [4]   [9]   [2]

octave> g(:, 1) = []
g = 3×2 interval matrix

   [1]   [6]
   [5]   [7]
   [9]   [2]

octave> g = g(:, 2:end) 
g = 3×1 interval vector

   [6]
   [7]
   [2]

octave> 


I think that this bug can be considered fixed.

    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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