Incorrect submatrix insertion. A = rand(3,3,1); B = rand(3,3); A(:,:) = B
Reported by Guillaume AZEMA
Originally assigned to Steer Serge
-- Bug description --
Incorrect submatrix insertion.
A = rand(3,3,1);
B = rand(3,3);
A(:,:) = B; --> works.
A(:,:,:) = B;
!--error 15
Submatrix incorrectly defined.
at line 136 of function %s_i_s called by :
A(:,:,:) = B;
This used to work in Scilab 5.2.2
-- Scilab error message --
-- How to reproduce the bug --