Move empty cell in a row

5 visualizaciones (últimos 30 días)
Lorenzo Lasagni
Lorenzo Lasagni el 11 de Mayo de 2018
Editada: Stephen23 el 11 de Mayo de 2018
Hello, I've a cell array structured like this:
{1,2,3,4,5,[],[],[];
6,7,8,[],9,10,[],[];
11,12,13,[],[],[],14,15}
I would like to move the empty cell at the end of the row to eliminate the column after and have only 5 columns and no more 8. How can I do?
Thanks a lot, Lorenzo

Respuesta aceptada

Guillaume
Guillaume el 11 de Mayo de 2018
Another option, which may or may not be faster than Rik's (I haven't tested but I suspect it's faster since it doesn't do any sorting:
C = {1,2,3,4,5,[],[],[];
6,7,8,[],9,10,[],[];
11,12,13,[],[],[],14,15}
newC = C'; %tranpose since matlab works by column
newC = newC(~cellfun(@isempty, newC)); %remove all empty cells
newC = reshape(newC, [], size(C, 1))'
This assumes that there is the same number of empty cells in each row.
  2 comentarios
Rik
Rik el 11 de Mayo de 2018
This is faster by about a factor of 2 (at least for this example on my machine, your mileage may vary).
So if you are certain this condition is true, use this code, if not, use mine. You could of course put it in a try-catch block.
Lorenzo Lasagni
Lorenzo Lasagni el 11 de Mayo de 2018
Editada: Stephen23 el 11 de Mayo de 2018
They are both working well, but yes actually this is faster, thanks both.

Iniciar sesión para comentar.

Más respuestas (1)

Rik
Rik el 11 de Mayo de 2018
Editada: Rik el 11 de Mayo de 2018
Does cell2mat work for you? I you want to keep it as a cell, you can also follow it up with num2cell.
A={1,2,3,4,5,[],[],[];
6,7,8,[],9,10,[],[];
11,12,13,[],[],[],14,15};
B1=cell2mat(A);
B2=num2cell(cell2mat(A));
In cases where each non-empty cell contains arrays, or different data types, the code below can be used, although there might be a more elegant/faster method.
A={1,2,3,4,5,[],[],[];
6,7,8,[],9,10,[],[];
11,12,13,[],[],[],14,15};
for row=1:size(A,1)
temp=A(row,:);
bin=cellfun('isempty',temp);%much faster than @isempty
[~,order]=sort(bin);%sort the empty cells to the back
A(row,:)=A(row,order);%might be a few ms faster than A(row,:)=temp(order);
end
%remove all completely empty columns
A(:,all(cellfun('isempty',A),1))=[];
  2 comentarios
Lorenzo Lasagni
Lorenzo Lasagni el 11 de Mayo de 2018
I think it wouldn't work because I don't have really a number, but 1==178x3 double or 7 is 5558x3 double
Rik
Rik el 11 de Mayo de 2018
My edit should work for you. If it doesn't, please let me know.

Iniciar sesión para comentar.

Categorías

Más información sobre Data Type Conversion en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by