Octave to Matlab,使用==>时出错vertcat,CAT参数维度不一致

时间:2013-03-27 23:43:40

标签: matlab octave

我很少遇到麻烦,因为我的工作是八度音,但是当我尝试在Matlab中运行时 我弄错了:

The expression on this line will generate an error when executed.  The error will be:     Error    using ==> vertcat
CAT arguments dimensions are not consistent.

??? Error using ==> encuentraPares at 15
Error using ==> vertcat
CAT arguments dimensions are not
consistent.

解决问题的代码是:

   matrizJugadas = [ 
        '1'   '2'   '3' ; 
        '4'   '5'   '6' ; 
        '7'   '8'   '9' ;
        '10'  '11'  '12'
   ];

这是什么麻烦?

谢谢!。

1 个答案:

答案 0 :(得分:0)

这是6个要素:

[ '10'  '11'  '12' ]

相当于

'101112'

以及

[ '1' '0' '1' '1' '1' '2' ]

但这只有3个元素:

[  '1'   '2'   '3' ]