フィルターのクリア

Operator '.*' is not supported for operands of type 'cell'.

159 ビュー (過去 30 日間)
Gözde Üstün
Gözde Üstün 2020 年 7 月 9 日
コメント済み: Image Analyst 2020 年 7 月 10 日
Hello,
I am getting this error: Operator '.*' is not supported for operands of type 'cell'.
Here my code:
for a=1:m %d->m
for b=1:m %d->m
for x=1:m
for y=1:m
BO=BO+B(a,b,x,y).*(kron(A_ax(:,:,x,a),B_by(:,:,y,b))); %this is the Bell operator
end
end
end
end
And b is coming from other code. I am converting it:
B=T(:,:,:,:);
B=cell2mat(B);
I really dont understand why I have this error and how I can solve it

回答 (2 件)

Matt J
Matt J 2020 年 7 月 9 日
編集済み: Matt J 2020 年 7 月 9 日
Well, you need to check whether B is a cell array or not (it almost certainly is). Did your call to cell2mat work?
  3 件のコメント
Matt J
Matt J 2020 年 7 月 10 日
Well, that explains everything. Multiplication with a cell array will not work
>> {2}.*3
Undefined operator '.*' for input arguments of type 'cell'.
Image Analyst
Image Analyst 2020 年 7 月 10 日
Hopefully after you read the FAQ, you'll have a better idea of what a cell array is, how it works, and how to use it: FAQ : What is a cell array? And you'll learn when to use braces, when to use parentheses, and when to use brackets.

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


Image Analyst
Image Analyst 2020 年 7 月 9 日
If B is a cell array, try B{a,b,x,y} instead of B(a,b,x,y) to get the contents of the cell.
  1 件のコメント
Gözde Üstün
Gözde Üstün 2020 年 7 月 10 日
B is a cell array because when I tried to convert it, I am getting this error:
Dimensions of arrays being concatenated are not consistent.
Error in cell2mat (line 118)
ct{mref{:}} = cat(cdim+1,c{mref{:},:});

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

カテゴリ

Help Center および File ExchangeData Type Conversion についてさらに検索

タグ

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by