US English (US)
JP Japanese
CN Chinese
KR Korean

Contact Us

If you still have questions or prefer to get help directly from an agent, please submit a request.
We’ll get back to you as soon as possible.

Please fill out the contact form below and we will reply as soon as possible.

  • Knowledge Base Home
  • Contact Us
English (US)
US English (US)
JP Japanese
CN Chinese
KR Korean
  • Home
  • MATLAB API

How can I import a .CSV file from Moku:Lab’s Data Logger into MATLAB?

Written by Paul Cracknell

Updated at July 7th, 2024

Contact Us

If you still have questions or prefer to get help directly from an agent, please submit a request.
We’ll get back to you as soon as possible.

Please fill out the contact form below and we will reply as soon as possible.

  • Moku:Go
    Moku:Go General Moku:Go Arbitrary Waveform Generator Moku:Go Data Logger Moku:Go Digital Filter Box Moku:Go FIR Filter Builder Moku:Go Frequency Response Analyzer Moku:Go Logic Analyzer & Pattern Generator Moku:Go Oscilloscope & Voltmeter Moku:Go PID Controller Moku:Go Spectrum Analyzer Moku:Go Waveform Generator Moku:Go Power Supplies Moku:Go Lock-in Amplifier Moku:Go Time & Frequency Analyzer Moku:Go Laser Lock Box Moku:Go Phasemeter
  • Moku:Lab
    Moku:Lab General Moku:Lab Arbitrary Waveform Generator Moku:Lab Data Logger Moku:Lab Digital Filter Box Moku:Lab FIR Filter Builder Moku:Lab Frequency Response Analyzer Moku:Lab Laser Lock Box Moku:Lab Lock-in Amplifier Moku:Lab Oscilloscope Moku:Lab Phasemeter Moku:Lab PID Controller Moku:Lab Spectrum Analyzer Moku:Lab Time & Frequency Analyzer Moku:Lab Waveform Generator Moku:Lab Logic Analyzer/Pattern Generator
  • Moku:Pro
    Moku:Pro General Moku:Pro Arbitrary Waveform Generator Moku:Pro Data Logger Moku:Pro Frequency Response Analyzer Moku:Pro Oscilloscope Moku:Pro PID Controller Moku:Pro Spectrum Analyzer Moku:Pro Waveform Generator Moku:Pro Lock-in Amplifier Moku:Pro Laser Lock Box Moku:Pro Digital Filter Box Moku:Pro FIR Filter Builder Moku:Pro Phasemeter Moku:Pro Multi-instrument Mode Moku:Pro Logic Analyzer/Pattern Generator Moku:Pro Time & Frequency Analyzer
  • Python API
  • MATLAB API
  • Arbitrary Waveform Generator
  • Data Logger
  • Digital Filter Box
  • FIR Filter Builder
  • Frequency Response Analyzer
  • Laser Lock Box
  • Lock-in Amplifier
  • Oscilloscope
  • Phasemeter
  • PID Controller
  • Spectrum Analyzer
  • Time & Frequency Analyzer
  • Waveform Generator
  • Logic Analyzer & Pattern Generator
  • Multi Instrument Mode
  • Moku Cloud Compile
  • Moku general
  • LabVIEW
+ More

If you only need the data, simply type “load yourfile.csv” at the MATLAB command prompt. CSV files generated by Moku:Lab’s Data Logger also contain a text header with information about when the data was recorded, the instrument settings, and what each column in the data represents. If you want to import this metadata as well, use the command “moku = importdata(‘yourfile.csv’)”

For example, this is the output feedback from 

>> moku = importdata("MokuOscilloscopeData_20240707_103108_Traces.csv");
>> moku


moku = 


  struct with fields:


          data: [1024×3 double]
      textdata: {9×3 cell}
    colheaders: {'% Time (s)'  ' Channel A (Input 1) (V)'  ' Channel B (Input 2) (V)'}


>> moku.textdata


ans =


  9×3 cell array


    {'% Moku:Go Oscilloscope'                   }    {0×0 double                }    {0×0 double                }
    {'% Channel A (Input 1), DC coupling, 1 x…'}    {0×0 double                }    {0×0 double                }
    {'% Channel B (Input 2), DC coupling, 1 x…'}    {0×0 double                }    {0×0 double                }
    {'% Time span 1.255 ms, time offset 0.000…'}    {0×0 double                }    {0×0 double                }
    {'% Edge trigger: Channel A, level 0.000 …'}    {0×0 double                }    {0×0 double                }
    {'% Output 1 (off) - Sine, 10.000 000 000…'}    {0×0 double                }    {0×0 double                }
    {'% Output 2 (off) - Ramp, 50.000 000 000…'}    {0×0 double                }    {0×0 double                }
    {'% Acquired 2024-07-07 T 10:31:08 -0700'   }    {0×0 double                }    {0×0 double                }
    {'% Time (s)'                               }    {' Channel A (Input 1) (V)'}    {' Channel B (Input 2) (V)'}


>> moku.colheaders


ans =


  1×3 cell array


    {'% Time (s)'}    {' Channel A (Input 1) (V)'}    {' Channel B (Input 2) (V)'}


>> moku.data


ans =


   -0.0006   -0.0012   -0.0037
   -0.0006   -0.0024   -0.0037
   -0.0006         0   -0.0037
   -0.0006         0   -0.0037
   -0.0006         0   -0.0037
               ...
   -0.0006   -0.0012   -0.0037
   -0.0006   -0.0012   -0.0037
   -0.0006   -0.0012   -0.0037
   -0.0006   -0.0012   -0.0037
   -0.0006   -0.0024   -0.0037


matlab data logger import data moku:lab

Was this article helpful?

Yes
No
Give feedback about this article

Related Articles

  • What is the main difference between the Moku Oscilloscope and the Data Logger instruments?
  • For how long can the Data Logger record ?
  • How can I read data from .li files?

Sitemap

  • Moku:Lab
  • Instruments
  • Software
  • Company
  • Support
  • Store
  • Terms & Conditions
  • Privacy Policy

Offices

United States
+1 (619) 332-6230
12526 High Bluff Dr
Suite 150
San Diego, CA 92130

Australia
+61 2 6171 9730
243 Northbourne Avenue
Suite 2
Lyneham, ACT 2602

Australia
+61 03 7073 3594
700 Swanston Street
Suite 5E, Level 5
Carlton, VIC 3053

Follow us

Youtube LinkedIn

官方微信

Contact us
© 2025 Liquid Instruments. All rights reserved.

Knowledge Base Software powered by Helpjuice

Definition by Author

0
0
Expand