Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
toolbox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Institute of Technical Acoustics (ITA)
toolbox
Commits
fd6822fa
Commit
fd6822fa
authored
8 years ago
by
Marco Berzborn
Browse files
Options
Downloads
Patches
Plain Diff
added sph sampling for em32 by mhacoustics
parent
263bbe7d
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
applications/SphericalHarmonics/ita_sph_sampling/ita_sph_sampling_eigenmike.m
+70
-0
70 additions, 0 deletions
...alHarmonics/ita_sph_sampling/ita_sph_sampling_eigenmike.m
with
70 additions
and
0 deletions
applications/SphericalHarmonics/ita_sph_sampling/ita_sph_sampling_eigenmike.m
0 → 100644
+
70
−
0
View file @
fd6822fa
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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment