词干:x和y的大小不一致

时间:2014-10-31 11:34:01

标签: octave

本月刚刚开始使用Octave,我开始遇到一些我不明白的问题。我一直收到这个错误:inconsistent size of x and y 我不知道为什么。

octave:17> sig2=([100:2:120])
sig2 =

   100   102   104   106   108   110   112   114   116   118   120

octave:18> stem([10033:10053],sig2,'*')

error: stem: inconsistent size of x and y
error: called from:
error:   /usr/share/octave/3.6.2/m/plot/private/__stem__.m at line 413, column 11
error:   /usr/share/octave/3.6.2/m/plot/private/__stem__.m at line 37, column 50
error:   /usr/share/octave/3.6.2/m/plot/stem.m at line 81, column 7

1 个答案:

答案 0 :(得分:1)

他们是不同的! 100到120乘2导致10个值。 10033到10053乘以1导致20个值。您可能想要更改其中一个。

sig2=([100:2:120]) 
stem([10033:2:10053],sig2,'*')