XLSWriteMex

버전 1.0.0.0 (38.5 KB) 작성자: Gordon Ray
MATLAB MEX function to create an Excel spreadsheet.
다운로드 수: 2.8K
업데이트 날짜: 2004/3/24

라이선스 보기

Functionally the same xlswrite.m (by Scott Hirsch), the only difference is in the implementation.

XLSWriteMex is implemented in C++ and compiled into a MATLAB MEX dll. I did this because 'xlswrite.m' does not compile using the MATLAB compiler, so any MATLAB program using 'xlswrite.m' cannot be compiled into a stand-alone app.

Using XLSWriteMex instead of xlswrite will solve this problem.

Example using XLSWriteMex:
m = rand(100,4);
header = 'This is some introductory information at the top of my spreadsheet.';
colnames = {'Ch1','Ch2','Ch3','Ch4'};
filename = 'myfile.xls';
XLSWriteMex(m,header,colnames,filename);

Will create a spreadsheet named myfile.xls

인용 양식

Gordon Ray (2026). XLSWriteMex (https://kr.mathworks.com/matlabcentral/fileexchange/4599-xlswritemex), MATLAB Central File Exchange. 검색 날짜: .

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

도움 받은 파일: xlswrite - legacy

도움 준 파일: Example of how to save or read data to an Excel archive.

버전 게시됨 릴리스 정보
1.0.0.0

Changed category from
'Utilities: Miscellaneous' to
'Utilities: Data Import/Export'