usage of not isequal
6 views (last 30 days)
Show older comments
I am using this line: while not(isequal(OptimalPath(end,2)),SearchGoal)
end
I get error "not enough input arguments" - puzzled why
0 Comments
Accepted Answer
Walter Roberson
on 16 Oct 2016
not( isequal(OptimalPath(end,2),SearchGoal) )
You had the ) in the wrong place
0 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!