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
fc901cb9
Commit
fc901cb9
authored
Feb 03, 2017
by
rbo
Browse files
isa fix
parent
0415f84b
Changes
1
Hide whitespace changes
Inline
Side-by-side
applications/Binaural-HRTF/HpTF_class/itaHpTF_MS.m
View file @
fc901cb9
...
...
@@ -45,10 +45,10 @@ classdef itaHpTF_MS < itaHpTF
this
.
MSTF
.
outputChannels
=
[
1
2
];
if
nargin
==
1
% init
if
isa
(
'itaHpTF'
,
varargin
)
if
isa
(
varargin
{
1
},
'itaHpTF'
)
this
.
init
=
varargin
;
elseif
isa
(
'itaMSTF'
,
varargin
)
% calibration input
this
.
MSTF
=
varargin
;
elseif
isa
(
varargin
{
1
},
'itaMSTF'
)
% calibration input
this
.
MSTF
=
varargin
{
1
}
;
end
this
.
dimensions
=
2
*
this
.
repeat
;
this
.
fftDegree
=
this
.
MSTF
.
fftDegree
;
...
...
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