view getVarname.m @ 217:fc07ebc49412 feature/beams

noname: Changed convergence to use grids in the representation of the solutions.
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 27 Jun 2016 13:23:46 +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