フィルターのクリア

How do I create column names?

12 ビュー (過去 30 日間)
Cathy
Cathy 2013 年 8 月 1 日
I have a 1x49 cell array (header_file) that contains the column names of a 1998x49 double data array (data_file). How do I make the 49 values in the header_file be the 49 column names in the data_file?

採用された回答

John Petersen
John Petersen 2013 年 8 月 1 日
編集済み: John Petersen 2013 年 8 月 1 日
Can you use a structure instead with fieldnames of the column names?
1. Read the names in as strings.
2. Read the data into an array.
3. Use setfield to assign fieldnames to the structure and set the value to the appropriate column of the array.

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2013 年 8 月 1 日
Numeric arrays cannot have non-numeric headers.
The closest you can get is to create a cell array:
newcell = [header_file; num2cell(data_file)];

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by