%--------------------------------------------------------------------------
% EVOL.plot
%--------------------------------------------------------------------------
% Plot an EVOL object
%--------------------------------------------------------------------------
% Syntax
%--------------------------------------------------------------------------
plot(EV1)
EVOL.plot(EV1)
h = plot(EV1)
h = EVOL.plot(EV1)
%--------------------------------------------------------------------------
% Description
%--------------------------------------------------------------------------
% The method plot of the EVOL class allows for plotting an EVOL object. The
% input argument must be an EVOL object.
%--------------------------------------------------------------------------
% Input arguments
%--------------------------------------------------------------------------
% EV1 : EVOL object
%--------------------------------------------------------------------------
% Output arguments
%--------------------------------------------------------------------------
% h : Figure identifier
%--------------------------------------------------------------------------
% Example
%--------------------------------------------------------------------------
X = [0 1 2];
Y = [-1 1 0];
EV = EVOL(X,Y,'Time (s)','Value (SI)');
plot(EV);