photo

Bruno Baptista


Con actividad desde 2016

Followers: 0   Following: 0

Estadística

Feeds

Ver por

Respondida
How can i put all zeros in the end of the rows in a matrix?
A = [matriz]; At = A'; N = length(A); B = zeros(size(At)); idx = At == 0; B(~sort(idx)) = At(~idx); B=B'

más de 7 años hace | 0

| aceptada

Pregunta


How can i put all zeros in the end of the rows in a matrix?
i wanto to put all the zero elemets of a matrix to the end of the rows. For example if i have A=[1 0 2 3 0;1 3 0 2 5;0 2 4 0 1] ...

más de 7 años hace | 2 respuestas | 0

2

respuestas