MATLAB Data Logger and saving the logfile
-
Moku:Go
Moku:Go Arbitrary Waveform Generator Moku:Go Data Logger 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 Digital Filter Box Moku:Go FIR Filter Builder Moku:Go Lock-in Amplifier Moku:Go General Moku:Go Logic Analyzer/Pattern Generator 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 Waveform Generator Moku:Lab Time & Frequency Analyzer Moku:Lab Logic Analyzer/Pattern Generator
-
Moku:Pro
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 Digital Filter Box Moku:Pro FIR Filter Builder Moku:Pro Phasemeter Moku:Pro Multi-instrument Mode Moku:Pro General 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
How do I access the log file from MATLAB
The Moku Datalogger can be configured and launched from within a MATLAB script. Once the log file is captured it can be downloaded over the network to the MATLAB PC for local analysis. This MATLAB script is an example of how to create and download the log file remotely.
%% Basic Datalogger Example % % This example demonstrates how you can configure the Datalogger instrument. % % (c) 2021 Liquid Instruments Pty. Ltd. % %% Connect to your Moku % Connect to your Moku and deploy the oscilloscope instrument i = MokuDatalogger('192.168.###.###'); try % Enable precision mode i.set_acquisition_mode('mode','Precision'); % Set the sample rate to 1 kSa/s i.set_samplerate(1e3); % Generate a sine wave on Channel 1 % 1Vpp, 10kHz, 0V offset i.generate_waveform(1, 'Sine', 'amplitude',1, 'frequency',10e3); % Generate a square wave on Channel 2 % 1Vpp, 10kHz, 0V offset, 50% duty cycle i.generate_waveform(2, 'Square', 'amplitude',1, 'frequency', 1e3, 'duty', 50); % Start the data logging session of 10 second and store the file on the RAM logging_request = i.start_logging('duration',10); log_file = logging_request.file_name; % Set up to display the logging process progress = i.logging_progress(); while progress.time_to_end > 1 fprintf('%d seconds remaining \n',progress.time_to_end) pause(1); progress = i.logging_progress(); end % Download the log file from the Moku to "Users" folder % Moku:Go should be downloaded from "persist" and Moku:Pro from "ssd" i.download_file('persist',log_file,['C:\Users\' log_file]); catch ME % End the current connection session with your Moku i.relinquish_ownership(); rethrow(ME) end % End the current connection session with your Moku i.relinquish_ownership();