フィルターのクリア

Copying rows from one table to another

39 ビュー (過去 30 日間)
David Cynamon
David Cynamon 2016 年 10 月 24 日
コメント済み: Alexandra Harkai 2016 年 10 月 24 日
I have a large table of data which I have managed to filter down to the particular entrees I want by deleting unwanted rows. I'd like to be able to create new tables off of this.
For example making a new table consisting off all rows in the original that have the entree X for field y.
I would like to use this with a logical expression such as
rows = table.Name == 'Smith';
vars = {'Gender','Height','Weight'};
newTable = table(rows,vars)
However when do this it informs me that "==" is not defined for cells. What is the correct way to do this?

採用された回答

Alexandra Harkai
Alexandra Harkai 2016 年 10 月 24 日
strcmp(table.Name, 'Smith')
would do the trick.
  3 件のコメント
David Cynamon
David Cynamon 2016 年 10 月 24 日
Thank you very much for the help!
I saw in the first link you sent that I could use code like the following to return a structure where cells that have entries greater than specific values are listed.
rows = T.Var2>0;
However when I try this I get "Undefined operator '>' for input arguments of type 'cell'". What command would let me do this?
Thank you again for your help, it's much appreciated.
Alexandra Harkai
Alexandra Harkai 2016 年 10 月 24 日
If your table column for a given variable is a cell array, then you need to get the data 'out' of it: http://uk.mathworks.com/help/matlab/cell-arrays.html
So cell2mat would 'Convert cell array to ordinary array of the underlying data type'.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeTables についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by