1

私はオクターブで仕事をしているので、めったに問題はありません。動作しますが、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 に答える