이 제출물을 팔로우합니다
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다
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://kr.mathworks.com/matlabcentral/fileexchange/44606-read-csv-file-created-with-tektronix-tds2000), MATLAB Central File Exchange. 검색 날짜: .
도움
도움 준 파일: .csv read and plot
| 버전 | 퍼블리시됨 | 릴리스 정보 | Action |
|---|---|---|---|
| 1.0.0.0 |
