Mercurial > repos > public > sbplib
view stuffStruct.m @ 1269:5fa2f62a58a1 feature/poroelastic
Add class for upwind D1 based on the standard norm matrices
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Sun, 31 May 2020 20:16:54 -0700 |
parents | 7ea4b6de59d9 |
children |
line wrap: on
line source
function s = stuffStruct(varargin) s = struct(); for i = 1:nargin assert(~isempty(inputname(i)), 'All inputs must be variables.'); s.(inputname(i)) = varargin{i}; end end