Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Projektpraktikum
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Paul Meyer
Projektpraktikum
Merge requests
!1
Positionsdaten in getSeriesParams.m
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Positionsdaten in getSeriesParams.m
patch-1
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Jan-Wilke Henke
requested to merge
patch-1
into
master
8 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
1edbe6ac
1 commit,
8 years ago
1 file
+
10
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
matlab/skripts/functions/getSeriesParams.m
+
10
−
0
Options
@@ -5,6 +5,7 @@ function params = getSeriesParams(code)
% params(2): cell[array(int)] abscent Datafilenumbers
% params(3): cell[string] file Prefix
% params(4): cell[array(int)] usable for normalization
% params(5): cell[double] start, end, zero
% available Series:
% '3-0', '3-SF6_hi', '4-0', '4-BK7', '4-SF6', '6-0', '6-BK7', '6-SF6'
@@ -19,41 +20,50 @@ elseif isequal(code, '3-0')
params
(
2
)
=
{[
6
]};
params
(
3
)
=
{
'data/Third Try/20160603_Spektrum_without_SF6_3rd_try__USB2H003391_'
};
params
(
4
)
=
{[
1
,
-
3
:
-
1
]};
params
(
5
)
=
{
13.66
,
12.20
,
12.44
};
elseif
isequal
(
code
,
'3-SF6'
)
params
(
1
)
=
{
45
};
params
(
2
)
=
{[]};
params
(
3
)
=
{
'data/Third Try with SF6/20160603_Spektrum_with_SF6_3rd_try__USB2H003391_'
};
params
(
5
)
=
{
9.34
,
8.90
,
9.10
};
elseif
isequal
(
code
,
'3-SF6_hi'
)
params
(
1
)
=
{
44
};
params
(
2
)
=
{[]};
params
(
3
)
=
{
'data/Third Try with SF6 higher Intensity/20160603_Spektrum_with_SF6_3rd_try_higher_Intensity_USB2H003391_'
};
params
(
5
)
=
{
9.34
,
8.90
,
9.10
};
elseif
isequal
(
code
,
'4-0'
)
params
(
1
)
=
{
62
};
params
(
2
)
=
{[]};
params
(
3
)
=
{
'data/Fourth Try/20160607_Spektrum_without_SF6_4th_try_USB2H003391_'
};
params
(
4
)
=
{[
1
:
12
,
-
3
:
-
1
]};
params
(
5
)
=
{
12.80
,
12.20
,
12.46
};
elseif
isequal
(
code
,
'4-BK7'
)
params
(
1
)
=
{
55
};
params
(
2
)
=
{[]};
params
(
3
)
=
{
'data/Fourth Try with BK7/20160607_Spektrum_with_BK7_4th_try_USB2H003391_'
};
params
(
5
)
=
{
12.12
,
11.60
,
11.84
};
elseif
isequal
(
code
,
'4-SF6'
)
params
(
1
)
=
{
62
};
params
(
2
)
=
{[]};
params
(
3
)
=
{
'data/Fourth Try with SF6/20160607_Spektrum_with_SF6_4th_try_USB2H003391_'
};
params
(
4
)
=
{[
1
:
6
,
-
8
:
-
20
]};
params
(
5
)
=
{
8.51
,
8.00
,
8.30
};
elseif
isequal
(
code
,
'6-0'
)
params
(
1
)
=
{
51
};
params
(
2
)
=
{[]};
params
(
3
)
=
{
'data/Sixth Try/20160610_Spektrum_without_6th_try_USB2H003391_'
};
params
(
4
)
=
{[
1
:
4
,
-
2
:
-
1
]};
params
(
5
)
=
{
14.56
,
14.06
,
14.30
};
elseif
isequal
(
code
,
'6-BK7'
)
params
(
1
)
=
{
45
};
params
(
2
)
=
{[]};
params
(
3
)
=
{
'data/Sixth Try with BK7/20160610_Spektrum_with_BK7_6th_try_USB2H003391_'
};
params
(
5
)
=
{
10.64
,
10.20
,
10.45
};
elseif
isequal
(
code
,
'6-SF6'
)
params
(
1
)
=
{
51
};
params
(
2
)
=
{[]};
params
(
3
)
=
{
'data/Sixth Try with SF6/20160610_Spektrum_with_SF6_6th_try_USB2H003391_'
};
params
(
5
)
=
{
8.42
,
7.92
,
8.16
};
else
error
(
'Data for code
''
%s
''
not found in function getSeriesParams'
,
code
);
end
\ No newline at end of file
Loading