-
Notifications
You must be signed in to change notification settings - Fork 42
/
real2complexSHMtx.m
49 lines (41 loc) · 1.45 KB
/
real2complexSHMtx.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
function T_r2c = real2complexSHMtx(N)
%REAL2COMPLEXSHMTX Returns transformation matrix of real to complex SH
%
% Returns the unitary transformation matrix T_r2c the expresses the complex
% spherical harmonics with respect to the real ones, so that
% y_N = T_r2c * r_N, where r_N and y_N are the real and complex SH
% vectors respectively, with all SHs up to order N included. For
% normalisations and conventions used here for each base see the README
% file.
%
% N: maximum order
%
% T_r2c: (N+1)^2 x (N+1)^2 basis transformation matrix
% Note that this is not the matrix that converts the coefficients
% That's (T_r2c').'
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Archontis Politis, 10/10/2013, update 12/06/2015
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% maximum order
T_r2c = zeros((N+1)^2, (N+1)^2);
% n = 0
T_r2c(1,1) = 1;
idx = 1;
if N>0
for n=1:N
m = (1:n)';
% form the diagonal
diagT = [-1i*ones(n,1); sqrt(2)/2; (-1).^m]/sqrt(2);
% form the antidiagonal
adiagT = [ones(n,1); sqrt(2)/2; 1i*(-1).^m]/sqrt(2);
% form the transformation matrix for the specific band n
tempT = diag(diagT) + fliplr(diag(adiagT));
T_r2c(idx + (1:2*n+1), idx + (1:2*n+1)) = tempT;
idx = idx + 2*n+1;
end
end
end