plot point(one column)

Matlab:

A=importdata('top2000_result_ttl_unhit.txt');
[m,n]=size(A);
x=linspace(1,m,m);
y=A(x);
plot(x,y,'.');

Gnuplot:

plot 'top2000_result_ttl_hit.txt'

原文地址:https://www.cnblogs.com/yangzhang/p/2908798.html