Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 :
x=randn(1,100); plot(x)
我想标准化x轴。有很多方法可用于标准化幅度/y 轴,但 x 轴的标准化是我想要做的。请帮忙。
x=randn(1,100); plot(linspace(0,1, length(x)), x);