Mercurial > repos > public > sbplib
view getVarname.m @ 522:68178e013868 feature/grids
Add not-implemented-error for interface method in multiblock.DiffOp
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Tue, 01 Aug 2017 12:22:59 +0200 |
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