Divide the array of cells

1 view (last 30 days)
Lev Mihailov
Lev Mihailov on 25 Jun 2019
Commented: Jan on 25 Jun 2019
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 Comments
Alex Mcaulley
Alex Mcaulley on 25 Jun 2019
Please, upload your data in a mat file.
Jan
Jan on 25 Jun 2019
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"?

Sign in to comment.

Accepted Answer

Jan
Jan on 25 Jun 2019
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 Comments
Lev Mihailov
Lev Mihailov on 25 Jun 2019
Gll{i}=Unt1{i}/Unt2{i} % Isn't Gll {i} indexed?
Jan
Jan on 25 Jun 2019
@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.

Sign in to comment.

More Answers (0)

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!