accessing cell data using brace indexing,

9 ビュー (過去 30 日間)
Tijjani Aminu Kuda
Tijjani Aminu Kuda 2020 年 1 月 27 日
コメント済み: Walter Roberson 2021 年 8 月 29 日
Hi everyone,
I am tring to access the content of multiple cell in a loop. I have used the code:
for k = 1:length(predictors)
usg = predictors{k};
end
But it doesn't work. Instead I'm getting error that reads: Brace indexing not supported for this variable type. Could someone help please?
  1 件のコメント
Walter Roberson
Walter Roberson 2020 年 1 月 28 日
What shows up for
class(predictors)

サインインしてコメントする。

回答 (3 件)

Catalytic
Catalytic 2020 年 1 月 28 日
You need to check what predictors really is. It is not a cell array, as you believe.

Image Analyst
Image Analyst 2020 年 1 月 28 日
The error is saying it's not a cell array like you think. It's something else, like a double or something. Where did it come from? Did some other function create it? If so, what?
See the FAQ for a good discussion of cell arrays. This should give you a good idea of where and when to use braces, parentheses, and brackets. Granted, it can be confusing. But I think reading the FAQ will help.

Abdul Rof V
Abdul Rof V 2021 年 8 月 29 日
編集済み: Abdul Rof V 2021 年 8 月 29 日
PI=ones(10,10);
p0=0;
for i=1:5
p{i}=PI{i}
end
anything wrong in indexing
  1 件のコメント
Walter Roberson
Walter Roberson 2021 年 8 月 29 日
You cannot use {} indexing with numeric arrays such as PI is assigned. {} indexing is reserved for container datatypes such as cell arrays or tables or strings.
You need () indexing for numeric datatypes.
Note: your PI is 2 dimensional, but you are using a single index for it. That does have meaning and can be valid, but please make sure it is what you want to do.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeEntering Commands についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by