function [E,Vg,th,C,T,V]=grunbaum(TH,L,m,nth,grd) % [E,Vg,th,C,T,V]=GRUNBAUM(TH,L,m,nth,grd) % % Eigenfunctions of the SINGLE POLAR CAP concentration problem. % % Calculates the matrix the way Grunbaum et al. (1982) propose. % Orders the eigenfunctions in decreasing order. % % INPUT: % % TH Angular extent of the spherical cap, in degrees % L Bandwidth (maximum angular degree) % m Angular order of the required data window, -lL | m<-L error('Order cannot exceed degree') end mor=m; m=abs(m); n=L-m+1; b=cos(TH/180*pi); % This is Grunbaum's original result, only for m>=0 e=[1:n]; alpha=-(e+m).*(e+m-1); gamma=sqrt((e+m).^2-m^2).*(((e+m).^2-(L+1)^2)./sqrt(4*(e+m).^2-1)); T=tridiag(gamma(1:end-1),alpha*b,gamma(1:end-1),n); if xver==1 % This result should be completely equivalent e=[m:L]; Gll=-e.*(e+1); Gl1=(e.*(e+2)-L*(L+2)).*sqrt(((e+1).^2-m^2)./(2*e+1)./(2*e+3)); TT=tridiag(Gl1(1:end-1),Gll*b,Gl1(1:end-1),n); difer(sum(T(:)-TT(:))) end % Diagonalize the matrix [C,Vg]=eig(T); % Turn this into a vector so orthocheck knows the concentration factors % still need to be calculated. Vg=diag(Vg); % Check normalization and calculate the eigenvalues % from a straightforward GL integration [ngl1,ngl2,com,V]=orthocheck(C,Vg,TH/180*pi,m); % Compute spatial functions, colatitudinal part only if nth~=0 % Zonal functions only if m==0 % Make spatial functions % This is SDW (2005) equation (5.10) combined with the sqrt(2-dom) of % (5.12) already included! [E,th]=pl2th(C,nth,1); th=th*180/pi; nlon=2*nth-1; else % This is SDW (2005) equation (5.10) combined with the sqrt(2-dom) of % (5.12) already included! [E,nlon,lat]=plm2th(C,nth,m,1); th=linspace(0,180,size(E,1)); end % Make E start with a positive lobe and ajust C too % Take the first NONZERO sample! Not just a numbered sample! % This was the source of a very nasty bug for index=1:size(E,2) C(:,index)=C(:,index)*sign(indeks(E(~~E(:,index),index),1)); E(:,index)=E(:,index)*sign(indeks(E(~~E(:,index),index),1)); end else E=0; th=0; nlon=0; end if nth~=0 & grd==2 % Output on full grid; watch the sign of m % Negative order is cosine taper if mor<=0 EE=E; clear E for index=1:size(EE,2) E{index}=EE(:,index)*cos(m*linspace(0,2*pi,nlon)); end end % Positive order is sine taper if mor>0 EE=E; clear E for index=1:size(EE,2) E{index}=EE(:,index)*sin(m*linspace(0,2*pi,nlon)); end end end