Moving in the matrix

4 views (last 30 days)
ni david
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?

Accepted Answer

Walter Roberson
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.

More Answers (0)

Categories

Find more on MATLAB 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!