Mercurial > repos > public > sbplib
view getVarname.m @ 1258:74eec7e69b63 feature/FMMlabb
Speed up computations using RungeKuttaSecondOrder when only the source term is time dependent.
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Fri, 13 Mar 2020 12:07:00 +0100 |
parents | 289fd8b1635c |
children |
line wrap: on
line source
function names = getVarname(varargin) names = cell(size(varargin)); for i = 1:numel(varargin) names{i} = inputname(i); end end