Master Thesis Code
by Simon Moser
Loading...
Searching...
No Matches
jumpReadData.m File Reference

reads binary files of JUMP Sensors More...

Go to the source code of this file.

Functions

function jumpReadData (in filePath, in options)
 

Detailed Description

reads binary files of JUMP Sensors

this function reads the binary file provided by the JUMP Sensor and returns a struct containing the data.

Parameters
filePath- full path to the binary file
options.time_correction- boolean to enable time correction (default: true)
options.plot_time_correction- boolean to plot the time correction (default: false)
options.time_jump_correction- boolean to correct time jumps (default: true)
options.plot_time_jump_correction- boolean to plot the time jump correction (default: false)
options.header_only- boolean to only read the header of the file (default: false)
Return values
data- struct containing the data. the fields are defined in jumpCheckData
Note
  • This implementation is inspired by the implementation of Tobias Voegeli (ETHZ) from 2016.
  • This function also undoes timing errors made in the firmware. See jumpCorrectData for more information.
% example usage:
data = jumpReadData("jump_1.BIN");
function jumpReadData(in filePath, in options)

Definition in file jumpReadData.m.

Function Documentation

◆ jumpReadData()