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
bdb96173
Commit
bdb96173
authored
May 08, 2018
by
Jan-Gerrit Richter
Browse files
removed eps from phi_unique tolerance
eps seems to be too small
parent
74e8a509
Changes
1
Hide whitespace changes
Inline
Side-by-side
applications/Binaural-HRTF/HRTF_class/@itaHRTF/itaHRTF.m
View file @
bdb96173
...
...
@@ -711,14 +711,14 @@ classdef itaHRTF < itaAudio
end
function
thetaUni
=
theta_Unique
(
this
,
varargin
)
thetaUni
=
uniquetol
(
this
.
dirCoord
.
theta
,
eps
);
thetaUni
=
uniquetol
(
this
.
dirCoord
.
theta
);
if
nargin
==
2
thetaUni
=
unique
(
this
.
dirCoord
.
theta
,
'stable'
);
end
end
function
phiUni
=
phi_Unique
(
this
,
varargin
)
phiUni
=
uniquetol
(
this
.
dirCoord
.
phi
,
eps
);
phiUni
=
uniquetol
(
this
.
dirCoord
.
phi
);
if
nargin
==
2
phiUni
=
unique
(
this
.
dirCoord
.
phi
,
'stable'
);
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