Skip to content

Commit

Permalink
Merge branch 'master' of github.com:sfstoolbox/sfs
Browse files Browse the repository at this point in the history
* 'master' of github.com:sfstoolbox/sfs:
  Change Ambisonics order for even loudspeaker numbers
  • Loading branch information
hagenw committed Jan 11, 2016
2 parents fead32a + 2305400 commit da8d4c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SFS_general/nfchoa_order.m
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
% the given number of secondary sources in order to avoid spectral repetitions
% (spatial aliasing) of the dirving signals. The order is
%
% / nls/2, even nls
% / nls/2 - 1, even nls
% M = <
% \ (nls-1)/2 odd nls
%
Expand Down Expand Up @@ -86,7 +86,7 @@
if isodd(nls)
M = (nls-1)/2;
else
M = nls/2;
M = nls/2 - 1;
end
elseif strcmp('3D',dimension)
% Ahrens (2012), p. 125
Expand Down

0 comments on commit da8d4c5

Please sign in to comment.