view callConstructor.m @ 469:365fcdbb8736 feature/sublassable_cellarray

Implement subsref properly
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 01 Aug 2017 12:59:06 +0200
parents 13362cf4dd89
children 428cc9d4106f
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)
    varargin
    fun = str2func(class(subclassObj));
    obj = fun(varargin{:});
end