Home > src > main > matlab > s2let_hpx_alm2map.m

s2let_hpx_alm2map

PURPOSE ^

s2let_axisym_synthesis

SYNOPSIS ^

function f = s2let_hpx_alm2map(flm, nside, varargin)

DESCRIPTION ^

 s2let_axisym_synthesis 
 Compute axisymmetric wavelet transform, output as HEALPIX maps.

 Default usage :

   f = s2let_hpx_alm2map(flm, nside, <options>)

 flm is the input spherical harmonic decomposition,
 nside is the HEALPIX resolution for the output map,
 f is the corresponding output map.

 Option :
  'L'               = { Harmonic band-limit; L > 1 (default=2*nside) }

 S2LET package to perform Wavelets transform on the Sphere.
 Copyright (C) 2012-2015  Boris Leistedt & Jason McEwen
 See LICENSE.txt for license details

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function f = s2let_hpx_alm2map(flm, nside, varargin)
0002 
0003 % s2let_axisym_synthesis
0004 % Compute axisymmetric wavelet transform, output as HEALPIX maps.
0005 %
0006 % Default usage :
0007 %
0008 %   f = s2let_hpx_alm2map(flm, nside, <options>)
0009 %
0010 % flm is the input spherical harmonic decomposition,
0011 % nside is the HEALPIX resolution for the output map,
0012 % f is the corresponding output map.
0013 %
0014 % Option :
0015 %  'L'               = { Harmonic band-limit; L > 1 (default=2*nside) }
0016 %
0017 % S2LET package to perform Wavelets transform on the Sphere.
0018 % Copyright (C) 2012-2015  Boris Leistedt & Jason McEwen
0019 % See LICENSE.txt for license details
0020 
0021 
0022 sz = size(flm);
0023 Lguessed = sqrt(sz(1));
0024 
0025 p = inputParser;
0026 p.addRequired('flm',@isnumeric); 
0027 p.addRequired('nside', @isnumeric); 
0028 p.addParamValue('L', Lguessed, @isnumeric);   
0029 p.parse(flm, nside, varargin{:});
0030 args = p.Results;
0031 
0032 f = s2let_hpx_alm2map_mex(flm, nside, args.L);
0033  
0034 end

Generated on Fri 11-Nov-2016 11:50:36 by m2html © 2005