view getVarname.m @ 557:2a856a589510 feature/grids/laplace_refactor

Add creation of physical boundary normal derivatives
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 29 Aug 2017 12:32:57 +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