Unable to perform assignment because brace indexing is not supported for variables of this type.
Mostra commenti meno recenti
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 Commenti
Matt J
il 10 Gen 2023
We need to see a demonstration of what you did, which you can provide using the Run button

Levente Gellért
il 10 Gen 2023
Modificato: Matt J
il 10 Gen 2023
Walter Roberson
il 10 Gen 2023
Which line is the error occurring on?
Levente Gellért
il 10 Gen 2023
Image Analyst
il 10 Gen 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.
Risposta accettata
Più risposte (2)
Ryan Baird
il 10 Gen 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
il 11 Gen 2023
0 voti
Categorie
Scopri di più su Matrix Indexing in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!