Unable to perform assignment because brace indexing is not supported for variables of this type.
Show older comments
Dear Matlab Community,
in a loop I am trying to write variables into a cell.
For variable sub_matrix it works, however for sub_matrix_idx it does not.
The error message:Unable to perform assignment because brace indexing is not supported for variables of this type.
The former are pixel values of an image in double format, the latter returns the position of these pixels on the image (also double, please see attached).
Any suggestions are appreciated
best
lg
5 Comments
Matt J
on 10 Jan 2023
We need to see a demonstration of what you did, which you can provide using the Run button

Levente Gellért
on 10 Jan 2023
Edited: Matt J
on 10 Jan 2023
Walter Roberson
on 10 Jan 2023
Which line is the error occurring on?
Levente Gellért
on 10 Jan 2023
Image Analyst
on 10 Jan 2023
What does this show
whos sub_matrix
whos sub_matrices
I ran your code, drew a region, and it finished with no error. I tried several time.
But what are you trying to do? In words, rather than code. There might be a better way.
I attach some demos that might help.
Accepted Answer
More Answers (2)
Ryan Baird
on 10 Jan 2023
It looks like sub_matrix is a matrix rather than a cell array, so it should be accessed with parenthesis:
sub_matrix(i, j) = ...
and not with braces:
sub_matrix{i, j} = ...
Levente Gellért
on 11 Jan 2023
0 votes
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!