slag_basis_mex - Compute the spherical Laguerre basis functions up to order N on a grid of radii nodes (with rescaling factor tau) Default usage : f = slag_basis(N, nodes, tau) plot(f) where N is the maximum order/mode of the spherical Laguerre functions, nodes is the radial grig on which to compute the basis function, tau is the rescaling factor. FLAG package to perform 3D Fourier-Laguerre Analysis Copyright (C) 2012 Boris Leistedt & Jason McEwen See LICENSE.txt for license details
0001 function f = slag_basis(N, nodes, tau) 0002 0003 % slag_basis_mex - Compute the spherical Laguerre basis functions 0004 % up to order N on a grid of radii nodes (with rescaling factor tau) 0005 % 0006 % Default usage : 0007 % 0008 % f = slag_basis(N, nodes, tau) 0009 % plot(f) 0010 % 0011 % where N is the maximum order/mode of the spherical Laguerre functions, 0012 % nodes is the radial grig on which to compute the basis function, 0013 % tau is the rescaling factor. 0014 % 0015 % FLAG package to perform 3D Fourier-Laguerre Analysis 0016 % Copyright (C) 2012 Boris Leistedt & Jason McEwen 0017 % See LICENSE.txt for license details 0018 0019 f = slag_basis_mex(N, nodes, tau); 0020 0021 end