graph - to plot the values of coordinates in first unit quadrant in matlab -
i have 2 row vectors of size 1x1024 , consist of values in range [0 1]. want plot points on graph within first unit quadrant in matlab. please me out draw graph.
ydata = ydata(xdata>=0 && xdata<=1); xdata = xdata(xdata>=0 && xdata<=1); plot(xdata, ydata);