Mercurial > repos > public > sbplib
view getVarname.m @ 970:23d9ca6755be feature/poroelastic
Add getBoundaryQuadrature in Elastic2dVariable. Rename get_boundary_operator -> getBoundaryOperator. Add operators in getBoundaryOperator, with full size so that they work with multiblock.DiffOp.getBoundaryOperator.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Tue, 25 Dec 2018 07:23:38 +0100 |
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