フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Undefined operator '>' for input arguments of type 'cell'. Error in sif (line 374) if (hist(i,1)> a)

1 回表示 (過去 30 日間)
amal abbbes
amal abbbes 2018 年 2 月 25 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
for l=1:siz
hist=rt(l);
max=[1 hist(1,1)];
for i=1:36
a=max(2);
if (hist(i,1)> a)
max= [i hist(i,1)];
end
end
  1 件のコメント
amal abbbes
amal abbbes 2018 年 2 月 25 日
je peut pas vraiment comprendre pourquoi cette erreur ?

回答 (1 件)

dpb
dpb 2018 年 2 月 25 日
Apparently rt is a cell array containing a cell. Hence need to "use the curlies, Luke!" to dereference the content. Try
if hist{i,1}>a
instead.
NB: However, I strongly suggest to use a different variable name than hist; hist is a builtin Matlab histogram function that you've aliased here...
>> which hist
C:\ML_R2016b\toolbox\matlab\datafun\hist.p
>>
For a more precise answer would need to see result of
whos rt
and
whos hist
to see the actual storage pattern.
  2 件のコメント
amal abbbes
amal abbbes 2018 年 2 月 26 日
編集済み: amal abbbes 2018 年 2 月 26 日
j'ai essaye avec votre méthode mais il ya a une autre erreur qui s'affiche malgré que j'ai bien vérifie les boucles et les dimension des matrices Index exceeds matrix dimensions.
dpb
dpb 2018 年 2 月 26 日
Show code and results as requested with any error in context...no can see your terminal from here.

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by