Home > src > main > matlab > s2let_transform_axisym_tiling.m

s2let_transform_axisym_tiling

PURPOSE ^

s2let_axisym_tiling - Compute tiling in harmonic space.

SYNOPSIS ^

function [kappa kappa0] = s2let_axisym_tiling(B, L, J_min)

DESCRIPTION ^

 s2let_axisym_tiling - Compute tiling in harmonic space.
 -- Axisymmetric wavelets on the sphere.

 Default usage :

   [kappa kappa0] = s2let_axisym_tiling(B, L, J_min)

 kappa is an array containing wavelet tiling .
 kappa0 contains the scaling function.
 B is the wavelet parameter,
 L is the angular band-limit,
 J_min the first wavelet to be used.

 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 [kappa kappa0] = s2let_axisym_tiling(B, L, J_min)
0002 
0003 % s2let_axisym_tiling - Compute tiling in harmonic space.
0004 % -- Axisymmetric wavelets on the sphere.
0005 %
0006 % Default usage :
0007 %
0008 %   [kappa kappa0] = s2let_axisym_tiling(B, L, J_min)
0009 %
0010 % kappa is an array containing wavelet tiling .
0011 % kappa0 contains the scaling function.
0012 % B is the wavelet parameter,
0013 % L is the angular band-limit,
0014 % J_min the first wavelet to be used.
0015 %
0016 % S2LET package to perform Wavelets transform on the Sphere.
0017 % Copyright (C) 2012-2015  Boris Leistedt & Jason McEwen
0018 % See LICENSE.txt for license details
0019 
0020 p = inputParser;
0021 p.addRequired('B', @isnumeric);          
0022 p.addRequired('L', @isnumeric);   
0023 p.addRequired('J_min', @isnumeric); 
0024 p.parse(B, L, J_min);
0025 args = p.Results;
0026 
0027 [kappa kappa0] = s2let_transform_axisym_tiling_mex(B, L, J_min);
0028   
0029 end

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