comparison callConstructor.m @ 592:4422c4476650 feature/utux2D

Merge with feature/grids
author Martin Almquist <martin.almquist@it.uu.se>
date Mon, 11 Sep 2017 14:17:15 +0200
parents 428cc9d4106f
children
comparison
equal deleted inserted replaced
591:39554f2de783 592:4422c4476650
1 % Calls the constructor of an object.
2 % Might be usefull to call the constructor of a subclass object in the superclass
3 function obj = callConstructor(subclassObj, varargin)
4 fun = str2func(class(subclassObj));
5 obj = fun(varargin{:});
6 end