Undefined operator '==' for input arguments of type 'struct'.
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
hari hara pallapothu
am 3 Mär. 2017
Bearbeitet: Walter Roberson
am 3 Mär. 2017
hey people I am getting this error while i am working on my project,what does this really mean????please help me out....this is the following code
if f==iregion
for jj = 1:10
writeLED(bbb,'usr0',1)
pause(0.05)
writeLED(bbb,'usr0',0)
pause(0.05)
end
end
0 Kommentare
Akzeptierte Antwort
Alexandra Harkai
am 3 Mär. 2017
It means f or iregion is a struct, and the '==' operator is not defined for that type. for structs, you can use isequal to compare if they are the same.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Structures finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!