MATLAB: How to plot a data points

plotting

hello there, i have 15 (x) points named x1 to x15; and corresponding to this i have 15 (y) points named from y1 to y15. how can i plot them ?

Best Answer

x = [x1, x2, x3, x4, x5, x6, x7, x8, x9]
And do the same kind of thing for y1 etc. Then
plot(x, y)
Related Question