Unable to perform assignment because brace indexing is not supported for variables of this type.
古いコメントを表示
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 件のコメント
Matt J
2023 年 1 月 10 日
We need to see a demonstration of what you did, which you can provide using the Run button

Levente Gellért
2023 年 1 月 10 日
編集済み: Matt J
2023 年 1 月 10 日
Walter Roberson
2023 年 1 月 10 日
Which line is the error occurring on?
Levente Gellért
2023 年 1 月 10 日
Image Analyst
2023 年 1 月 10 日
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.
採用された回答
その他の回答 (2 件)
Ryan Baird
2023 年 1 月 10 日
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} = ...
カテゴリ
ヘルプ センター および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!