フィルターのクリア

How do I convert a column to numeric?

58 ビュー (過去 30 日間)
jakobjakob
jakobjakob 2018 年 6 月 6 日
コメント済み: jakobjakob 2018 年 6 月 6 日
See the image
I want to count with the 1st column, but I always get the message "Undefined operator" - "for input arguments or type 'cell'." What can I do about it? I think the column is not numeric, but I am not sure. Who can help me?
  8 件のコメント
Stephen23
Stephen23 2018 年 6 月 6 日
jakobjakob
jakobjakob 2018 年 6 月 6 日
編集済み: jakobjakob 2018 年 6 月 6 日
I uploaded the variable, its about the variable ndata

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

採用された回答

Stephen23
Stephen23 2018 年 6 月 6 日
編集済み: Stephen23 2018 年 6 月 6 日
Where C is your cell array:
V = str2double(C(:,1))
This assumes that there is no header, and that each cell of the first column contains one number stored as a char (using a dot, not comma).
  9 件のコメント
Stephen23
Stephen23 2018 年 6 月 6 日
編集済み: Stephen23 2018 年 6 月 6 日
@jakobjakob: The concept for indexing cell arrays is simple:
  • {} curly braces access the data inside the cells.
  • () parentheses access the cells themselves.
Just think of cell arrays like boxes: do you want to pick up the box (the cell, ()), or whatever that is inside the box (the data, {}). Sometimes you want to pick up the box, and sometimes you want to get out whatever is inside... each of these can be useful.
Therefore to access the contents of one cell you just need to use curly braces:
alldata{1,1} - 10
jakobjakob
jakobjakob 2018 年 6 月 6 日
Thanks a lot! Such a simple solution...

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by