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
fc6efec2
Commit
fc6efec2
authored
Nov 03, 2016
by
Marco Berzborn
Browse files
added sph sampling for em32 by mhacoustics
parent
2fd22f65
Changes
1
Hide whitespace changes
Inline
Side-by-side
applications/SphericalHarmonics/ita_sph_sampling/ita_sph_sampling_eigenmike.m
0 → 100644
View file @
fc6efec2
function
varargout
=
ita_sph_sampling_eigenmike
(
varargin
)
%ITA_SPH_SAMPLING_EIGENMIKE - Generate Eigenmike em32 sampling
% Microphone positions based on the pentakis dodecahedron, exact positions
% can be found under:
% https://www.mhacoustics.com/sites/default/files/EigenStudio%20User%20Manual%20R02A.pdf
%
% Zero degrees in azimuth aligns with the “mh acoustics” logo on the
% microphone shaft
%
% Syntax:
% sampling = ita_sph_sampling_eigenmike()
%
% See also:
% ita_sph_sampling
%
% Reference page in Help browser
% <a href="matlab:doc ita_sph_sampling_eigenmike">doc ita_sph_sampling_eigenmike</a>
% <ITA-Toolbox>
% This file is part of the ITA-Toolbox. Some rights reserved.
% You can find the license for this m-file in the license.txt file in the ITA-Toolbox folder.
% </ITA-Toolbox>
% Author: Marco Berzborn -- Email: mbe@akustik.rwth-aachen.de
% Created: 18-Oct-2016
positions
=
[
0.0420
69.0000
0
0.0420
90.0000
32.0000
0.0420
111.0000
0
0.0420
90.0000
328.0000
0.0420
32.0000
0
0.0420
55.0000
45.0000
0.0420
90.0000
69.0000
0.0420
125.0000
45.0000
0.0420
148.0000
0
0.0420
125.0000
315.0000
0.0420
90.0000
291.0000
0.0420
55.0000
315.0000
0.0420
21.0000
91.0000
0.0420
58.0000
90.0000
0.0420
121.0000
90.0000
0.0420
159.0000
89.0000
0.0420
69.0000
180.0000
0.0420
90.0000
212.0000
0.0420
111.0000
180.0000
0.0420
90.0000
148.0000
0.0420
32.0000
180.0000
0.0420
55.0000
225.0000
0.0420
90.0000
249.0000
0.0420
125.0000
225.0000
0.0420
148.0000
180.0000
0.0420
125.0000
135.0000
0.0420
90.0000
111.0000
0.0420
55.0000
135.0000
0.0420
21.0000
269.0000
0.0420
58.0000
270.0000
0.0420
122.0000
270.0000
0.0420
159.0000
271.0000
];
positions
(:,
2
:
3
)
=
positions
(:,
2
:
3
)/
180
*
pi
;
sampling
=
itaSamplingSph
(
positions
,
'sph'
);
sampling
.
nmax
=
4
;
varargout
{
1
}
=
sampling
;
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