Textbooks.elsevier.com - tools for all your teaching needs.

18) Create a y vector which stores random integers in the 1 to 100 range. Create an x vector which iterates from 1 to the length of the y vector. Experiment with the plot function using different colors, line types, and plot symbols. Ch2Ex18.m % Experiment with plot symbols and line types. y = randi([1, 100],1,15) x = 1:length(y); clf. plot(x,y ... ................
................