Moving in the matrix
4 views (last 30 days)
Show older comments
ni david
on 28 Oct 2017
Answered: Walter Roberson
on 28 Oct 2017
Imagine I have a 4x4 chess board. How can I define the movements of the knight in this board?
0 Comments
Accepted Answer
Walter Roberson
on 28 Oct 2017
(I,J) ->
(I-1,J-2)
(I-1,J+2)
(I+1,J-2)
(I+1,J+2)
(I-2,J-1)
(I-2,J+1)
(I+2,J-1)
(I+2,J+1)
and then filter out the ones that went out of bounds.
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!