Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Institute of Technical Acoustics (ITA)
toolbox
Commits
6ba21c2a
Commit
6ba21c2a
authored
Dec 15, 2017
by
Markus Mueller-Trapet
Browse files
minor changes
parent
7371ed2c
Changes
1
Hide whitespace changes
Inline
Side-by-side
kernel/ClassStuff/@itaResult/errorbar.m
View file @
6ba21c2a
...
...
@@ -9,7 +9,7 @@ function varargout = errorbar(varargin)
sArgs
=
struct
(
'pos1_data'
,
'itaSuper'
,
'nodb'
,
ita_preferences
(
'nodb'
),
'figure_handle'
,[],
'axes_handle'
,[],
'linfreq'
,
ita_preferences
(
'linfreq'
),
...
'linewidth'
,
ita_preferences
(
'linewidth'
),
'fontname'
,
ita_preferences
(
'fontname'
),
'fontsize'
,
ita_preferences
(
'fontsize'
),
...
'xlim'
,[],
'ylim'
,[],
'axis'
,[],
'aspectratio'
,[],
'hold'
,
'off'
,
'precise'
,
true
,
'ylog'
,
false
,
'unwrap'
,
false
,
'stderr'
,
false
,
'stdDev'
,[],
'N'
,[],
'color'
,
'blue'
);
[
data
sArgs
]
=
ita_parse_arguments
(
sArgs
,
varargin
);
[
data
,
sArgs
]
=
ita_parse_arguments
(
sArgs
,
varargin
);
%% Get Defaults
matlabdefaults
=
ita_set_plot_preferences
;
%set ita toolbox preferences and get the matlab default settings
...
...
@@ -105,7 +105,7 @@ if isempty(sArgs.axes_handle)
sArgs
.
axes_handle
=
gca
;
sArgs
.
resize_axes
=
true
;
else
axes
(
sArgs
.
axes_handle
);
%#ok<MAXES>
axes
(
sArgs
.
axes_handle
);
sArgs
.
resize_axes
=
false
;
end
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment