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); 

Popular posts from this blog

c# - ODP.NET Oracle.ManagedDataAccess causes ORA-12537 network session end of file -

matlab - Compression and Decompression of ECG Signal using HUFFMAN ALGORITHM -

utf 8 - split utf-8 string into bytes in python -