1

我很少遇到麻烦,因为我在工作 whit 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'
   ];

有什么问题吗?

谢谢!!。

4

1 回答 1

0

这是 6 个元素宽:

[ '10'  '11'  '12' ]

相当于

'101112'

并且

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

但这只有 3 个元素宽:

[  '1'   '2'   '3' ]
于 2013-03-27T23:53:55.610 回答