Delete rows in cell that contain part of string

30 visualizaciones (últimos 30 días)
newbie9
newbie9 el 13 de Mzo. de 2019
Comentada: newbie9 el 13 de Mzo. de 2019
I have an Nx2 cell (mixes of strings and doubles) that I'm trying to clean up (rawdata). Specifically, I am trying to delete all rows with ">" in the first column. My code below is deleting those rows, but it is reshaping the cell as an Mx1 cell (data1). I'm not sure where the error is. Thanks for any help.
rawdata = textscan(fid, '%s %s' , 'HeaderLines', 7);
rawdata = [rawdata{:}];
data1 = rawdata(cellfun(@(s)isempty(regexp(s,'>')),rawdata));

Respuesta aceptada

madhan ravi
madhan ravi el 13 de Mzo. de 2019
Editada: madhan ravi el 13 de Mzo. de 2019
Cell(strcmp(Cell(:,1),'>'),:)=[]

Más respuestas (1)

newbie9
newbie9 el 13 de Mzo. de 2019
Editada: newbie9 el 13 de Mzo. de 2019
Below works, but perhaps is not the most elegant code.
rawdata = textscan(fid, '%s %s' , 'HeaderLines', 7);
fclose all;
rawdata = [rawdata{:}];
idx = strfind(rawdata(:,1),'>');
tf = cellfun('isempty', idx);
tf = [tf tf];
data1 = rawdata(tf);
data1 = reshape(data1,[length(data1)/2, 2]);

Categorías

Más información sobre Startup and Shutdown 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