Subscripted assignment dimension mismatch.

3 次查看(过去 30 天)
I am trying to store the string in to one array in if else state ment. i get this error
Subscripted assignment dimension mismatch.
Error in connect (line 68) blob(i)='rectangle';

采纳的回答

Bruno Pop-Stefanov
Bruno Pop-Stefanov 2014-1-20
This error means that you are trying to assign to an element of vector blob (size 1x1) a vector a size 1x9. That happens because in MATLAB, a string is a vector of characters: 'rectangle' is a vector of size 1x9, but blob(i) has size 1x1.
Are you trying to store strings of various sizes in the variable blob? What do you want to do when storing strings in a vector?
  4 个评论
saravanakumar D
saravanakumar D 2014-1-20
but i get this error
Cell contents assignment to a non-cell array object.
Error in connect (line 68) blob{i}='Rectangle';
Bruno Pop-Stefanov
Bruno Pop-Stefanov 2014-1-20
Do you use blob somewhere else? Do you mind showing your code where you use blob?

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Operators and Elementary Operations 的更多信息

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by