CSV reader

版本 1.2.0.0 (3.6 KB) 作者: timo
This class can be used to read a csv file into RAM or save a csv file from RAM to disk
261.0 次下载
更新 2013/1/8

查看许可证

This class can be used to read a csv file into RAM or save a csv file from RAM to disk

Example Usage for CSV file that have a signal column named 'recFilename' with at least one element:

csv = csvClass();
csv.openCSV();
csv.getNrSignals();
csv.getSignals();
a=csv.getSignalValue('recFilename');
csv.deletSig('recFilename');
csv.saveCsv('C:\','file2.csv');%works only for non cell CSV file.

引用格式

timo (2026). CSV reader (https://ww2.mathworks.cn/matlabcentral/fileexchange/39683-csv-reader), MATLAB Central File Exchange. 检索时间: .

MATLAB 版本兼容性
创建方式 R2010b
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Data Import and Analysis 的更多信息
标签 添加标签
版本 已发布 发行说明
1.2.0.0

-fix deleteSig

1.1.0.0

-bug fixing
-now it can be saved a csv of doubles or of csv of strings/doubles.

1.0.0.0