Is it possible to rename the CELL header

16 次查看(过去 30 天)
Dear Coder, I have do search on the net, however I cannot find any reference whether we can change the CELL Header into something like newName instead of the default number.
Really appreciate for any feedback.
  2 个评论
Stephen23
Stephen23 2017-7-26
What is "the CELL Header" ?
I searched the MATLAB documentation for "cell header" but did not get any results that obviously relate to your question.
Guillaume
Guillaume 2017-7-26
You may need to provide more information about what is a CELL Header. Which product is this relevant to?
Matlab has a cell array data type. This has no header.
thisisacellarray = {[1 2 3 4], 'aabbcc'; datetime, 1i+5}

请先登录,再进行评论。

采纳的回答

Walter Roberson
Walter Roberson 2017-7-26
I suspect you might be talking about the column numbers in the variable browser, asking if the numbers can be replaced with words.
If I am correct, then No, you cannot do that directly.
However, you might be able to use array2table() to create a table() object. You can then do things like
t.Properties.VariableNames(1:3) = {'year','month','day'};
Now when you openvar('t') then the variable names will be shown at the top of each column
  1 个评论
balandong
balandong 2017-7-26
Hi Walter, Yes, you understand my question correctly. Just wonder why MATLAB does not allow modification of the column number into words. Seem I need to change my code now to address this problem. However, another problem arise due to this changes. It is ok, I will make new thread for the new problem Thanks Walter

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by