Delete rows in cell that contain part of string
17 次查看(过去 30 天)
显示 更早的评论
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));
0 个评论
采纳的回答
madhan ravi
2019-3-13
编辑:madhan ravi
2019-3-13
Cell(strcmp(Cell(:,1),'>'),:)=[]
3 个评论
Image Analyst
2024-7-17
Example with 2-by-2 cell array:
Cell = { '>', 123, 'abc', 'xyz'; '2abc', 456, '>' 'str'}
Cell(strcmp(Cell(:,1),'>'),:)=[]
Note that row 1 is gone because the first cell in that row is '>'.
Not sure how certain you are that the > contains no white space but you may make it more robust by using strtrim and/or startsWith, for example if the > was the first non-white character and had other characters after it, you could do it this way:
Cell = { ' > ', 123, 'abc', 'xyz'; '2abc', 456, '>' 'str'}
Cell(startsWith(strtrim(Cell(:,1)),'>'),:)=[]
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Cell Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!