struc2xls

버전 1.1.0.0 (1.56 KB) 작성자: Francisco de Castro
STRUC2XLS Writes the contents os a structure into an Excel file
다운로드 수: 4.6K
업데이트 날짜: 2014/5/1

라이선스 보기

Slow and dirty way to save a simple structure to an Excel file with xlswrite. I did it to solve a urgent problem for a friend. Lots of improvements possible, I'm sure.
STRUC2XLS (FILE,S) writes the contents of structure S to a excel file named FILE. The name of the worksheet and the starting row and column can be specified as optional arguments.

Example:
s=struct('one',[1,2],'two',[10,20,30],'three',[100,200,300,400]);
struct2xls('s2xls',s,'Row',4,'Col','D')

인용 양식

Francisco de Castro (2025). struc2xls (https://kr.mathworks.com/matlabcentral/fileexchange/18530-struc2xls), MATLAB Central File Exchange. 검색 날짜: .

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

도움 준 파일: struc2xls

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.1.0.0

Repaired a bug: if a struct field is a character cell array, each letter was written in a different cell in the excel file.

1.0.0.0

Additional arguments: worksheet name, row and column.