Master Thesis Code
by Simon Moser
Loading...
Searching...
No Matches
exp_240203_allanDeviation1.m
Go to the documentation of this file.
1%
2% For LICENSE / TERMS OF USE, see the file LICENSE in the root directory of the repository.
3
4clear; close all; clc;
5
6%% add functions path and get data path
7addpath(genpath('../../functions'));
8datapath = getDataPath();
9datapath = fullfile(datapath, "self_captured/240203_allan_deviation_1/jump_240203_230222");
10
11%% load data
12data(1).uncorrected = jumpReadData(fullfile(datapath, "S-24-A-13026_000.BIN"), time_correction=false);
13data(1).corrected = jumpReadData(fullfile(datapath, "S-24-A-13026_000.BIN"), time_correction=true);
14%data2 = jumpReadData(fullfile(datapath, "S-24-A-13036_000.BIN"));
15%data3 = jumpReadData(fullfile(datapath, "S-24-A-13169_000.BIN"));
16
17%% test
18param(1).uncorrected = jumpNoiseAnalysis(data(1).uncorrected, "plot", true);
19param(1).corrected = jumpNoiseAnalysis(data(1).corrected, "plot", true);
function getDataPath()
function jumpNoiseAnalysis(in data, in options)
function jumpReadData(in filePath, in options)