table2word

버전 1.0.0.0 (3.13 KB) 작성자: Fahad Al Mahmood
Creating table in Microsoft Word Document using titles and a matrix.
다운로드 수: 9.3K
업데이트 2004/7/21

라이선스 보기

table2word(titles,m)
table2word(titles,m,table_title)
table2word(titles,m,style)
table2word(titles,m,style,table_title)
table2word(titles,m,filename)
table2word(titles,m,filename,table_title)
table2word(titles,m,style,filename)
table2word(titles,m,style,filename,table_title)

table2word : creates a table in Microsoft Word using titles and a matrix. Specifying file name and tabel style is optional.

titles: Column titles (cell array).
m: matrix of numbers.
filename: Name of excel file.
style: Table Style (from a list listed in file help).
table_title: Title of Table to be displayed on top of table.

Examples:

titles = {'1st','2nd','3rd','4th','5th','6th','7th','8th','9th','10th'};
m = magic(10);
table2word(titles,m);
table2word(titles,m,'Table Professional');
table2word(titles,m,'table.doc');
table2word(titles,m,'Table List 1','table.doc');
table2word(titles,m,'Table List 1','table.doc','My Table Title');

See also MSOPEN

인용 양식

Fahad Al Mahmood (2026). table2word (https://kr.mathworks.com/matlabcentral/fileexchange/4643-table2word), MATLAB Central File Exchange. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R13
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Dimensionality Reduction and Feature Extraction에 대해 자세히 알아보기
도움

도움 받은 파일: xlswrite - legacy

버전 게시됨 릴리스 정보
1.0.0.0

Replaced Structured Arrays COM commands with (invoke) & (set) commands.