[Bugzilla] [Bug 6812] Samuel GOUGEON has changed keywords, bug_status, component, resolution, assigned_to

bugzilla.admin at scilab.org bugzilla.admin at scilab.org
Sun Mar 25 04:18:16 CEST 2018


http://bugzilla.scilab.org/show_bug.cgi?id=6812
--------- Bug Summary -----------
Index 2-D cells with single index just destroy the cell. ** Accessing matrice

---------- Changed by ------------
sgougeon at free.fr

---------- What changed ----------
keywords, bug_status, component, resolution, assigned_to


Samuel GOUGEON <sgougeon at free.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|FIXED_in_scilab_6.0,        |
                   |nonregression_test_missing  |
             Status|NEW                         |RESOLVED
          Component|Install                     |Scilab
         Resolution|---                         |INVALID
           Assignee|vincent.couvert at scilab-ente |bugzilla.admin at scilab.org
                   |rprises.com                 |

--- Comment #4 from Samuel GOUGEON <sgougeon at free.fr> ---
The right syntax was c.entries(i)=i  instead of c(i).entries = i :

// Scilab 5.5.2:
c = cell([2,2])
for i = 1:4
   c.entries(i) = i
end

-->c = cell([2,2])
 c  =
!{}  {}  !
!{}  {}  !

-->for i = 1:4
-->   c.entries(i) = i
-->end
 c  = 
!1   {}  !
!{}  {}  !

 c  =
!1  {}  !
!2  {}  !

 c  = 
!1  3   !
!2  {}  !

 c  = 
!1  3  !
!2  4  !

-- 
You are receiving this mail because:
You are watching all bug changes.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.scilab.org/pipermail/bugzilla/attachments/20180325/4a5f46f6/attachment.htm>


More information about the Bugzilla mailing list