


s2let_bandlimit
Return the band-limit of a specific wavelet scale j
Default usage:
bl = s2let_bandlimit(j, J_min, B, L)
j the scale of interest,
J_min the minimal wavelet scale,
B is the wavelet parameter,
L is the band-limit for the transform.
S2LET package to perform Wavelets transform on the Sphere.
Copyright (C) 2012-2015 Boris Leistedt & Jason McEwen
See LICENSE.txt for license details

0001 function bl = s2let_bandlimit(j, J_min, B, L) 0002 0003 % s2let_bandlimit 0004 % Return the band-limit of a specific wavelet scale j 0005 % 0006 % Default usage: 0007 % bl = s2let_bandlimit(j, J_min, B, L) 0008 % 0009 % j the scale of interest, 0010 % J_min the minimal wavelet scale, 0011 % B is the wavelet parameter, 0012 % L is the band-limit for the transform. 0013 % 0014 % S2LET package to perform Wavelets transform on the Sphere. 0015 % Copyright (C) 2012-2015 Boris Leistedt & Jason McEwen 0016 % See LICENSE.txt for license details 0017 0018 bl = s2let_bandlimit_mex(j, J_min, B, L); 0019 0020 end