Función de trazado de MATLAB
figure();
plot(xArray, yArray, '*');
MitchAloha
figure();
plot(xArray, yArray, '*');
x = [0:5:100];
y = x;
plot(x, y)