Ambisonics
Functions
acn
Spherical harmonic degree n and order m for ambisonics order order.
Follows ACN.
| ACN | n | m | letter |
|---|---|---|---|
| 0 | 0 | 0 | W |
| 1 | 1 | -1 | Y |
| 2 | 1 | 0 | Z |
| 3 | 1 | +1 | X |
| PARAMETER | DESCRIPTION |
|---|---|
order
|
Ambisonics order.
TYPE:
|
| YIELDS | DESCRIPTION |
|---|---|
Tuple[int, int]
|
Tuple[int, int]: Degree |
Source code in acoustic_toolbox/ambisonics.py
sn3d
SN3D or Schmidt semi-normalisation.
See http://en.wikipedia.org/wiki/Ambisonic_data_exchange_formats#SN3D
| PARAMETER | DESCRIPTION |
|---|---|
m
|
Order |
n
|
Degree |
| RETURNS | DESCRIPTION |
|---|---|
NDArray[float64]
|
NDArray[np.float64]: The SN3D normalization coefficients. |
Source code in acoustic_toolbox/ambisonics.py
n3d
N3D or full three-D normalisation.
See http://en.wikipedia.org/wiki/Ambisonic_data_exchange_formats#N3D
| PARAMETER | DESCRIPTION |
|---|---|
m
|
Order |
n
|
Degree |
| RETURNS | DESCRIPTION |
|---|---|
NDArray[float64]
|
NDArray[np.float64]: The N3D normalization coefficients. |
Source code in acoustic_toolbox/ambisonics.py
:::