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

combines multiple JUMP sensor data structures into one More...

Go to the source code of this file.

Functions

function jumpCombineData (in data, in options)
 

Detailed Description

combines multiple JUMP sensor data structures into one

This function combines the data from multiple jumps into a single dataset. It takes in the data from each jump as input and returns a combined dataset.

Parameters
data: array of JUMP sensor data structures (see jumpReadData)
options.max_t_gap: maximum time gap between two data structures to be combined, if the time gap is larger, the data structures are not combined. must be given as duration or in seconds. (default: 10 seconds)
Return values
data_combined: combined JUMP sensor data structure
join_times: array of times when the data structures were combined
% example usage:
data(1) = jumpReadData("jump_1.BIN");
data(2) = jumpReadData("jump_2.BIN");
[data_combined, join_times] = jumpCombineData(data, max_t_gap=7);
function jumpCombineData(in data, in options)
function jumpReadData(in filePath, in options)
Note
The data structures must have the same header information.

see also jumpReadData, jumpCheckData

Definition in file jumpCombineData.m.

Function Documentation

◆ jumpCombineData()

function jumpCombineData ( in data,
in options )