How to rename a cell into Table

2 views (last 30 days)
Yuan Jun Lim
Yuan Jun Lim on 18 Nov 2019
Answered: KSSV on 18 Nov 2019
Hi, I have a cell named G_Status. It is a 6x2 cell.
How do i rename the first Column as G_Status_1 and the second Column as G_Status_2 ?

Answers (1)

KSSV
KSSV on 18 Nov 2019
Multiple ways. One way would be, convert the cell tinto table T using cell2table and rename the columns you want by
T.Properties.VariableNames = {"your names here"} ;

Community Treasure Hunt

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

Start Hunting!