Add row numbers to side of table in MATLAB

조회 수: 28 (최근 30일)
Logan Callahan
Logan Callahan 2022년 4월 19일
댓글: Logan Callahan 2022년 4월 19일
This is my code:
T = table(Name,Team,DVOA);
T.Name = categorical(T.Name);
T.Team = categorical(T.Team)
This is the output:
I need to add row numbers to the left-hand side of the table. Please help.
The result should look like this:

답변 (1개)

Chris
Chris 2022년 4월 19일
편집: Chris 2022년 4월 19일
rownums = 1:size(T,1);
T.Properties.RowNames = string(rownums);

카테고리

Help CenterFile Exchange에서 Instrument Control Toolbox에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by