s2let_make_doc Generate Matlab documentation Default usage : s2let_make_doc(s2letpath) s2letpath is the path for the S2LET package (root) 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 s2let_make_doc(s2letpath) 0002 0003 % s2let_make_doc 0004 % Generate Matlab documentation 0005 % 0006 % Default usage : 0007 % 0008 % s2let_make_doc(s2letpath) 0009 % 0010 % s2letpath is the path for the S2LET package (root) 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 cd(s2letpath) 0017 m2html('mfiles', 'src/main/matlab', 'htmldir', 'doc/matlab'); 0018 0019 end