% Example of plot function % Author: F. P. Schloerb %define arrays x = 0:10; y = x.*x; % make the plot with % dotted blue line and % squares for points plot(x,y,'b:s'); % label the plot xlabel('x'); ylabel('y'); title('Example');