MATLAB: How do i plot a column matrix as a vector point on the x-y plane inm matlab

MATLABthe code

i am trying to plot a matrix as a set of vector points i am quiet not getting it can anyone help

Best Answer

Let x be your vector...use plot(x,'.r')
x = rand(10,1) ;
plot(x,'.r')
Related Question