Master Thesis Code
by Simon Moser
Loading...
Searching...
No Matches
exp_240206_allanDeviation3.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/240206_allan_deviation_2");
10
11%% load data
12data1 = jumpReadData(fullfile(datapath, "S-24-A-13026_000.BIN"), time_correction=false);
13data2 = jumpReadData(fullfile(datapath, "S-24-A-13036_000.BIN"), time_correction=false);
14data3 = jumpReadData(fullfile(datapath, "S-24-A-13169_000.BIN"), time_correction=false);
15
16% remove start because of temperature decrease and end because of me
17% walking
18data1.tt = data1.tt(2e5:end - 200 * 60,:);
19data2.tt = data2.tt(2e5:end - 200 * 60,:);
20data3.tt = data3.tt(2e5:end - 200 * 60,:);
21
22
23%% parameter analysis
24param13 = jumpNoiseAnalysis(data1, "plot", true);
25param23 = jumpNoiseAnalysis(data2, "plot", true);
26param33 = jumpNoiseAnalysis(data3, "plot", true);
function getDataPath()
function jumpNoiseAnalysis(in data, in options)
function jumpReadData(in filePath, in options)