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