%--------------------------------------------------------------------------
% EVOL
%--------------------------------------------------------------------------
% Creation of an EVOL object.
%--------------------------------------------------------------------------
% Syntax
%--------------------------------------------------------------------------
EV = EVOL(absc,ordo,x_label,y_label);
%--------------------------------------------------------------------------
% Description
%--------------------------------------------------------------------------
% EVOL creates an EVOL object. The length of absc and ordo must be the
% same.
%--------------------------------------------------------------------------
% Input arguments
%--------------------------------------------------------------------------
% absc : scalar, vector
% ordo : scalar, vector
% x_label : string
% y_label : string
%--------------------------------------------------------------------------
% Output arguments
%--------------------------------------------------------------------------
% EV : EVOL object
%--------------------------------------------------------------------------
% Example
%--------------------------------------------------------------------------
X = [0 1 2];
Y = [-1 1 0];
EV = EVOL(X,Y,'Time (s)','Value (SI)')
EV =
EVOL with properties:
absc: [0 1 2]
ordo: [-1 1 0]
x_label: 'Time (s)'
y_label: 'Value (SI)'