readFlukeFile - Read measurements from a Fluke multimeter

版本 1.1.0.1 (286.0 KB) 作者: Gautam Vallabha
Read a file with recorded measurements from a Fluke(TM) multimeter
1.1K 次下载
更新时间 2016/9/1

查看许可证

[DATA TIME] = readFlukeFile(FILENAME), reads a CSV file with recorded measurements from a Fluke multimeter. It returns DATA (a vector of measurement values) and TIME (a vector of measurement times). The "time" of each measurement is the elapsed time in seconds since the start of the recording session.

The expected workflow is the following:
1. Configure the Fluke multimeter to record a series of measurements
2. Use FlukeViewForms (TM) to download the measurements, and export them to a CSV file
3. Use readFlukeFile to read the CSV file
Example:

[data time] = readFlukeFile('sampledata.csv');
plot(time, data);
xlabel('time in seconds');

NOTE: This entry requires FlukeViewForms (which is available with many of the Fluke models). To communicate with a Fluke 45 multimeter (which supports SCPI commands), see http://www.mathworks.com/matlabcentral/fileexchange/17679

引用格式

Gautam Vallabha (2024). readFlukeFile - Read measurements from a Fluke multimeter (https://www.mathworks.com/matlabcentral/fileexchange/25158-readflukefile-read-measurements-from-a-fluke-multimeter), MATLAB Central File Exchange. 检索来源 .

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

Community Treasure Hunt

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

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

Updated license

1.1.0.0

* Updated readFlukeFiles to handle multiple empty fields at end of header rows; added 'AllowDuplicateStartTimes' flag to command line.

1.0.0.0