26 lines
845 B
Matlab
26 lines
845 B
Matlab
function obj = plotTrails(obj)
|
|
arguments (Input)
|
|
obj (1, 1) {mustBeA(obj, 'miSim')}
|
|
end
|
|
arguments (Output)
|
|
obj (1, 1) {mustBeA(obj, 'miSim')}
|
|
end
|
|
|
|
% fast exit when plotting is disabled
|
|
if ~obj.makePlots
|
|
return;
|
|
end
|
|
|
|
% Plot full range of position history on each spatial plot axes
|
|
o = [];
|
|
for ii = 1:(size(obj.posHist, 1))
|
|
hold(obj.f.Children(1).Children(obj.spatialPlotIndices(1)), 'on');
|
|
o = [o; plot3(obj.f.Children(1).Children(obj.spatialPlotIndices(1)), obj.posHist(ii, 1:obj.maxIter, 1), obj.posHist(ii, 1:obj.maxIter, 2), obj.posHist(ii, 1:obj.maxIter, 3), 'Color', 'k', 'LineWidth', 1)];
|
|
hold(obj.f.Children(1).Children(obj.spatialPlotIndices(1)), 'off');
|
|
end
|
|
|
|
% Copy trails to other figures?
|
|
obj.trailPlot = o;
|
|
|
|
% Add legend?
|
|
end |