12 lines
224 B
Matlab
12 lines
224 B
Matlab
function output = child(obj, irec)
|
|
%CHILD Spawn a child of a pricklypear object
|
|
% PP.irec -> []
|
|
% P = child(PP, 2)
|
|
% P.irec -> 2
|
|
%
|
|
% See also pricklypear/parent
|
|
|
|
output = pricklypear(experiment(obj), irec);
|
|
|
|
end
|