


s2let_jmax
Return the maximum scale for a wavelet transform
Default usage:
J_max = s2let_jmax(L, B)
L is the band-limit for the transform,
B is the wavelet parameter.
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 J = s2let_jmax(L, B) 0002 0003 % s2let_jmax 0004 % Return the maximum scale for a wavelet transform 0005 % 0006 % Default usage: 0007 % J_max = s2let_jmax(L, B) 0008 % 0009 % L is the band-limit for the transform, 0010 % B is the wavelet parameter. 0011 % 0012 % S2LET package to perform Wavelets transform on the Sphere. 0013 % Copyright (C) 2012-2015 Boris Leistedt & Jason McEwen 0014 % See LICENSE.txt for license details 0015 0016 J = s2let_jmax_mex(L, B); 0017 0018 end