Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

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

1 Ansicht (letzte 30 Tage)
amal abbbes
amal abbbes am 25 Feb. 2018
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
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

Antworten (1)

dpb
dpb am 25 Feb. 2018
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 Kommentare
amal abbbes
amal abbbes am 26 Feb. 2018
Bearbeitet: amal abbbes am 26 Feb. 2018
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 am 26 Feb. 2018
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