csv2struct(filename​)

reads Excel's files stored in .csv or .xls file formats and stores results as a struct

您现在正在关注此提交

CSV2STRUCT reads Excel's files stored in .xls or .csv file formats and stores results as a struct.
DESCRIPTION
The Excel file is assumed to have a single header row. The output struct will have a field for each column and the field name will be based on the column name read from the header.
Unlike csvread, csv2struct is able to read files with both text and number fields and store data as fields of a struct. Likely works on Windows machines only.

See also:
MATLAB's csvread and xlsread functions
xml_read from my xml_io_tools which creates struct out of xml files

引用格式

Jaroslaw Tuszynski (2026). csv2struct(filename) (https://ww2.mathworks.cn/matlabcentral/fileexchange/26106-csv2struct-filename), MATLAB Central File Exchange. 检索时间: .

致谢

启发作品: Struct array conversion

一般信息

MATLAB 版本兼容性

  • 兼容任何版本

平台兼容性

  • Windows
  • macOS
  • Linux
版本 已发布 发行说明 Action
1.0.0.0

Updated syntax and removed no longer needed code for reading CSV files with more than 2^16 rows. Excel no longer has that limitation.