view callConstructor.m @ 695:ba0d31ce4121 feature/quantumTriangles

Changed jacobian at right side of the penalty term in 2D, seems like it is working
author Ylva Rydin <ylva.rydin@telia.com>
date Tue, 19 Sep 2017 09:51:08 +0200
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