8 lines
178 B
Matlab
8 lines
178 B
Matlab
function output = experiment(obj)
|
|
%EXPERIMENT Get experiment of pricklypear object
|
|
% experiment(PP) returns the experiment of PP
|
|
|
|
output = obj.sim_experiment;
|
|
|
|
end
|