??? Attempt to reference field of non-structure array.
1 次查看(过去 30 天)
显示 更早的评论
Following code is for manipulating matrix of image to change color of some pixel
for row=1:rows
for col=1:columns
s=I(row,col);
if(s.Equals(0))
...... end end end
I am getting following error ??? Attempt to reference field of non-structure array.
0 个评论
回答(1 个)
the cyclist
2013-4-16
In MATLAB syntax,
s.Equals
is referencing a field named "Equals" in a structure named "s".
Are you trying to test if s is equal to zero? If so, then you want
if s==0
2 个评论
the cyclist
2013-4-16
Since my answer solved your issue, please accept it, which may help future users seeking a similar solution.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!