Unable to perform assignment because brace indexing is not supported for variables of this type.
Afficher commentaires plus anciens
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 commentaires
Matt J
le 10 Jan 2023
We need to see a demonstration of what you did, which you can provide using the Run button

Levente Gellért
le 10 Jan 2023
Modifié(e) : Matt J
le 10 Jan 2023
Walter Roberson
le 10 Jan 2023
Which line is the error occurring on?
Levente Gellért
le 10 Jan 2023
Image Analyst
le 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.
Réponse acceptée
Plus de réponses (2)
Ryan Baird
le 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
le 11 Jan 2023
0 votes
Catégories
En savoir plus sur Matrix Indexing dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!