view getVarname.m @ 1322:412b8ceafbc6 feature/poroelastic

Add Zt to output args for Elastic2dCurvilinearAnisotropic.interfaceNormalTangential
author Martin Almquist <malmquist@stanford.edu>
date Sat, 24 Oct 2020 20:58:26 -0700
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