??? Attempt to reference field of non-structure array.
1 view (last 30 days)
Show older comments
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 Comments
Answers (1)
the cyclist
on 16 Apr 2013
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 Comments
the cyclist
on 16 Apr 2013
Since my answer solved your issue, please accept it, which may help future users seeking a similar solution.
See Also
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!