Moving in the matrix

3 vues (au cours des 30 derniers jours)
ni david
ni david le 28 Oct 2017
Imagine I have a 4x4 chess board. How can I define the movements of the knight in this board?

Réponse acceptée

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

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by