标签: matlab
我有:
x=randn(1,100); plot(x)
我想规范化x轴。可以使用大量方法来标准化幅度/ y轴,但x轴的标准化是我想要做的。请帮忙。
答案 0 :(得分:2)
x=randn(1,100); plot(linspace(0,1, length(x)), x);