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
abf12e1b
Commit
abf12e1b
authored
Feb 19, 2019
by
Michael Kohnen
Browse files
Bug fixed in ctc regularized, channel coordinates miss .n()
parent
e0baf7db
Changes
1
Hide whitespace changes
Inline
Side-by-side
applications/SpatialAudio/ita_ctc_filter_regularized.m
View file @
abf12e1b
...
...
@@ -106,9 +106,9 @@ end
[
Cm
Cn
]
=
size
(
CTC
);
for
idx
=
1
:
Cm
CTC
(
idx
,
1
)
.
channelNames
=
{[
'CTC-'
num2str
(
idx
)
'L
''
'
]};
CTC
(
idx
,
1
)
.
channelCoordinates
=
H
.
channelCoordinates
(
idx
*
Cn
-
1
);
CTC
(
idx
,
1
)
.
channelCoordinates
=
H
.
channelCoordinates
.
n
(
idx
*
Cn
-
1
);
CTC
(
idx
,
2
)
.
channelNames
=
{[
'CTC-'
num2str
(
idx
)
'R
''
'
]};
CTC
(
idx
,
2
)
.
channelCoordinates
=
H
.
channelCoordinates
(
idx
*
Cn
);
CTC
(
idx
,
2
)
.
channelCoordinates
=
H
.
channelCoordinates
.
n
(
idx
*
Cn
);
end
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