Divide the array of cells

1 次查看(过去 30 天)
Lev Mihailov
Lev Mihailov 2019-6-25
评论: Jan 2019-6-25
Hello! I have two arrays of cells and nodo divide them among themselves, in some parts of the cells there is an "o".
Gll{i}=Unt1{i}/Unt2{i} % Error @ Cell contents assignment to a non-cell array object.
Help solve this problem.
  2 个评论
Alex Mcaulley
Alex Mcaulley 2019-6-25
Please, upload your data in a mat file.
Jan
Jan 2019-6-25
What does this mean: "in some parts of the cells there is an "o""? What are "parts of cells"? What do you expect for dividing the character "o"?

请先登录,再进行评论。

采纳的回答

Jan
Jan 2019-6-25
The error message means, that Gll is not a cell array, but something else. Then you cannot use the curly braces for indexing.
Without seeing the definitions of the inputs and of Gll the readers cannot guess how to solve the problem.
  2 个评论
Lev Mihailov
Lev Mihailov 2019-6-25
Gll{i}=Unt1{i}/Unt2{i} % Isn't Gll {i} indexed?
Jan
Jan 2019-6-25
@Lev: I cannot know how you have defined Gll before. You need the curly braces, if you have defined it e.g. by:
Gll = cell(1, 200);
Please post the relevant part of the code - preferrably as "minimal working example": A piece of code which runs by copy&paste on the computers of the readers. Then add a copy of the complete error message and explain, what you want to achieve. Without these details, I cannot post an explicit solution or suggestion.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Migrate GUIDE Apps 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by