How do I create column names?
Mostra commenti meno recenti
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?
Risposta accettata
Più risposte (1)
Walter Roberson
il 1 Ago 2013
Numeric arrays cannot have non-numeric headers.
The closest you can get is to create a cell array:
newcell = [header_file; num2cell(data_file)];
Categorie
Scopri di più su Structures in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!