Concept Flow - plot() function basics
Define x and y data
Call plot(x, y)
MATLAB creates a figure window
Draw line connecting points (x(i), y(i))
Display plot on screen
The plot() function takes x and y data, creates a figure, draws lines connecting points, and shows the plot.