photo

Bruno Baptista


Active since 2016

Followers: 0   Following: 0

Statistics

Feeds

View by

Answered
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'

meer dan 7 jaar ago | 0

| accepted

Question


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] ...

meer dan 7 jaar ago | 2 answers | 0

2

answers