Info
この質問は閉じられています。 編集または回答するには再度開いてください。
Row selection from Cell contains 417 *11 elements
1 回表示 (過去 30 日間)
古いコメントを表示
I have an excel file. I read using xlsread and the variable named alldata contains 417*11 in cell format. Here I want to select only 178 rows which depends on the first column of the cell contains 'OAS1_0001_MR1'
'OAS1_0002_MR1'
'OAS1_0003_MR1'
'OAS1_0004_MR1'
'OAS1_0005_MR1'
'OAS1_0006_MR1'
'OAS1_0007_MR1'
'OAS1_0009_MR1'
'OAS1_0010_MR1'
'OAS1_0011_MR1' etc.
Can anyone please help me to find a solution. Thanks in Advance.
2 件のコメント
Jan
2015 年 7 月 22 日
The question is not clear: How do you decide which rows are wanted and which are not? What is the pattern?
回答 (1 件)
Walter Roberson
2015 年 7 月 23 日
tf = ismember(DataFromExcel(:,1), 'OAS1_0001_MR1');
subset = DataFromExcel(tf,:);
0 件のコメント
この質問は閉じられています。
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!