view callConstructor.m @ 1131:ea225a4659fe feature/laplace_curvilinear_test

Add 2d tests for derivative of delta function, and confirm that they work.
author Martin Almquist <malmquist@stanford.edu>
date Wed, 22 May 2019 15:31:26 -0700
parents 428cc9d4106f
children
line wrap: on
line source

% Calls the constructor of an object.
% Might be usefull to call the constructor of a subclass object in the superclass
function obj = callConstructor(subclassObj, varargin)
    fun = str2func(class(subclassObj));
    obj = fun(varargin{:});
end