Home > src > main > matlab > flag_get_tau.m

flag_get_tau

PURPOSE ^

flag_get_tau - Compute scaling factor of SLAG transform

SYNOPSIS ^

function tau = flag_get_tau(P, R)

DESCRIPTION ^

 flag_get_tau - Compute scaling factor of SLAG transform

 Default usage :

   tau = flag_get_tau(P, R)

 where P is the radial harmonic band-limit, 
 R is the radial limit,

 FLAG package to perform 3D Fourier-Laguerre Analysis
 Copyright (C) 2012  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 tau = flag_get_tau(P, R)
0002 
0003 % flag_get_tau - Compute scaling factor of SLAG transform
0004 %
0005 % Default usage :
0006 %
0007 %   tau = flag_get_tau(P, R)
0008 %
0009 % where P is the radial harmonic band-limit,
0010 % R is the radial limit,
0011 %
0012 % FLAG package to perform 3D Fourier-Laguerre Analysis
0013 % Copyright (C) 2012  Boris Leistedt & Jason McEwen
0014 % See LICENSE.txt for license details
0015 
0016 p = inputParser;
0017 p.addRequired('P', @isnumeric);   
0018 p.addRequired('R', @isnumeric); 
0019 p.parse(P, R);
0020 args = p.Results;
0021 
0022 tau = flag_get_tau_mex(P, R);
0023        
0024 end

Generated on Wed 14-Nov-2012 17:56:30 by m2html © 2005