Read .CSV File Created with Tektronix TDS2000

版本 1.0.0.0 (2.3 KB) 作者: Wynand
Reads the .CSV stored from a Tektronix Oscilloscope to USB drive
1.4K 次下载
更新时间 2013/12/5

查看许可证

DATA = READ_TEKTRONIX_CSV(FILENAME) returns a struct as DATA with all parameters read from the file with FILENAME. Each parameter read from the file becomes a field in the struct, with the time and samples vectors stored as TIME and VALUES.
TIME and VALUES are converted and stored as double with STR2DOUBLE.

Setup parameters are converted to double if possible. If STR2DOUBLE returns NAN for a particular parameter, its value is stored as a string.

Example usage:
data = read_tektronix_csv('F0000CH1.CSV');
plot(data.time, data.values)
xlabel(data.Horizontal_Units)
ylabel(data.Vertical_Units)
title(data.Source)

Discover additional parameters with: fieldnames(data) or disp(data)

Notes: Spaces in setup parameters are replaced with underscores to form valid struct fieldnames.
Multi-channel captures are stored/read from separate files.

Tested with a TDS2000 series Oscilloscope.

引用格式

Wynand (2024). Read .CSV File Created with Tektronix TDS2000 (https://www.mathworks.com/matlabcentral/fileexchange/44606-read-csv-file-created-with-tektronix-tds2000), MATLAB Central File Exchange. 检索时间: .

MATLAB 版本兼容性
创建方式 R2006b
兼容任何版本
平台兼容性
Windows macOS Linux
致谢

启发作品: .csv read and plot

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.0.0.0