我很少遇到麻烦,因为我的工作是八度音,但是当我尝试在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'
];
这是什么麻烦?
谢谢!。
答案 0 :(得分:0)
这是6个要素:
[ '10' '11' '12' ]
相当于
'101112'
以及
[ '1' '0' '1' '1' '1' '2' ]
但这只有3个元素:
[ '1' '2' '3' ]