FMHEncode1 Second Order Ambisonic encoder


FMHEncode1.ar(in, azimuth, elevation, rho, gain)


in - input signal

azimuth -  in radians, -pi to pi

elevation -  in radians, -0.5pi to +0.5pi

rho - the speaker radius (1 places shound at the radius, <1 within the radius, >1 is outside the radius)

beyond the radius, a distance scaling is applied (no filtering is done).

gain - a control rate level input.


Output channels are in order W,X,Y,Z, R, S, T, U, V.

Because of the way the W component is scaled, it is recommended that you only decode with FMHDecode1 and it's methods.


s=Server.internal.boot;


(

{ 

var w, x, y, z, r, s, t, u, v;

#w, x, y, z, r, s, t, u, v = 

FMHEncode1.ar(WhiteNoise.ar,MouseX.kr(0, 2pi), MouseY.kr(-0.5pi, 0.5pi), 1, 0.3);

FMHDecode1.cube(w, x, y, z, s, t, v);

}.scope(8));