Mercurial > repos > public > sbplib
view getVarname.m @ 1007:9c8ed00732fd feature/getBoundaryOp
Revert to old code in multiblock.DiffOp.getBoundaryOperator.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Wed, 16 Jan 2019 11:31:04 -0800 |
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