QUOTE(Gabriel @ Feb 19 2005, 06:46 PM)
I think that it will also be problematic to invert one channel in an M/S frame.
huh ?
MATLAB diary following...
CODE
> LR2MS = [1 1; 1 -1] .* sqrt(0.5);
> MS2LR = inv(LR2MS);
> SWAP = [0 1; 1 0];
> INVBOTH = [-1 0; 0 -1];
> MS2LR * (SWAP * LR2MS)
ans =
1.0000 0
0 -1.0000
> MS2LR * (INVBOTH * (SWAP * LR2MS))
ans =
-1.0000 0
0 1.0000
Thus, you can invert R in an M/S frame by swapping M and S and you can invert L by swapping M and S and also inverting both of'em.
...should be possible losslessly. Why not ?
SebastianG