XTDrone/sitl_config/ugv/catvehicle/simulink/plotDisvout.m

13 lines
241 B
Matlab

% Author: Jonathan Sprinkle
% plots the distance outputs from a data file
function plotData( timeseries )
% this timeseries is what we have
figure
hold on
plot(timeseries.Data);
plot(timeseries.uVelOut);
legend({'Distance','VelOut'});
end