writetable with spaces on header

조회 수: 21 (최근 30일)
Eth
Eth 2019년 6월 13일
댓글: Eth 2019년 6월 14일
I have a table: T
LastName Age Smoker Height Weight BloodPressure
_________ ___ ______ ______ ______ _____________
'Sanchez' 38 true 71 176 124 93
'Johnson' 43 false 69 163 109 77
'Diaz' 40 false 67 133 117 75
What I would like to do is output this table to a text file but with spaces in between LastName and BloodPressure like:
Last Name Age Smoker Height Weight Blood Pressure
_________ ___ ______ ______ ______ _____________
'Sanchez' 38 true 71 176 124 93
'Johnson' 43 false 69 163 109 77
'Diaz' 40 false 67 133 117 75

채택된 답변

Walter Roberson
Walter Roberson 2019년 6월 14일
header = {'Last Name', 'Age', 'Smoker', 'Height', 'Weight', 'Blood Pressure'};
Tcell = [header; table2cell(T)];
writecell(Tcell, 'YourFileName.txt', 'Delimiter', '\t')
  댓글 수: 6
dpb
dpb 2019년 6월 14일
Crystall ball out for repair again, Walter? :)
Eth
Eth 2019년 6월 14일
Installed R2019a and it worked. Thanks a lot.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

dpb
dpb 2019년 6월 13일
You will have to write the table content via fprintf then; the writetable function doesn't have the flexibility to specify alternate headings and column names must be valid Matlab variable names which don't include spaces.

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by