标签: matlab
我有一组数据说x=1:100和y=x.^2如何绘制这条线以使线条呈线性,并且比例增加2的幂?
x=1:100
y=x.^2
答案 0 :(得分:0)
看起来loglog plotting function就是你要找的东西:
x = 1:100; y = x。^ 2; 双对数(X,Y);