Read .CSV File Created with Tektronix TDS2000

Reads the .CSV stored from a Tektronix Oscilloscope to USB drive

現在この提出コンテンツをフォロー中です。

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 (2026). Read .CSV File Created with Tektronix TDS2000 (https://jp.mathworks.com/matlabcentral/fileexchange/44606-read-csv-file-created-with-tektronix-tds2000), MATLAB Central File Exchange. に取得済み.

謝辞

ヒントを与えたファイル: .csv read and plot

一般的な情報

MATLAB リリースの互換性

  • すべてのリリースと互換性あり

プラットフォームの互換性

  • Windows
  • macOS
  • Linux
バージョン 公開済み リリース ノート Action
1.0.0.0