It's very very good!! Thank you very much.
Therefore if we suppose that we connect to emlblock two variable inputs with the same temporary variable (for example two definite integrals from t0 to t0+Ts for each of them, where t0 is starting istant and Ts is clock time), we can take out the equal element writing:
function y = fcn(u1,u2)
% This block supports the Embedded MATLAB subset.
% See the help menu for details.
eml.extrinsic('ismember')
eml.extrinsic('find')
a=ismember(u1,u2);
r=find(a);
rr=1;
rr=r;
ur=u1(rr);
y =ur;
is it???