八度曲线:如何设置正确的位置?

时间:2018-01-09 23:58:24

标签: matlab plot graph octave

这是我在八度音中遇到的:

x = -100 : 100
plot(x.^3)

但是我得到了如下图表。似乎情节认为点x = 100是x = 0,为什么?以及如何解决它?

enter image description here

1 个答案:

答案 0 :(得分:5)

一个输入的plot函数将输入解释为 y -axis值,并假设 x -axis值为1, 2, 3, ...

要指定 x -axis值,请使用plot 两个输入

plot(x, x.^3)