Effacer les filtres
Effacer les filtres

how can I plot a game board in a figure

7 vues (au cours des 30 derniers jours)
Tariq Hammoudeh
Tariq Hammoudeh le 19 Déc 2021
Commenté : Walter Roberson le 23 Déc 2021
Im programming the game battleship, and i need create a figure 2, 6 by 6 boards (one for the user and one for the computer). I was searching up on figures in matlab but i didnt find anything on how to create a grid in the figure. So how can i do that please, also can i have each grid correspond to a number from 1 to 36.

Réponse acceptée

Image Analyst
Image Analyst le 19 Déc 2021
You can just do
numSpaces = 6;
myBoard = zeros(numSpaces+1,numSpaces+1);
computersBoard = zeros(numSpaces+1,numSpaces+1);
subplot(1, 2, 1);
pcolor(myBoard);
axis square
title('Your Board', 'FontSize', 15)
subplot(1, 2, 2);
pcolor(computersBoard);
axis square
title('Computer Board', 'FontSize', 15)
Check the File Exchange, and click the tag on the left for numerous battleship programs:
  30 commentaires
Image Analyst
Image Analyst le 23 Déc 2021
Yes I agree that image() would be better than pcolor(). The only disadvantage is that image() doesn't give grid lines while pcolor() does. However you can use yline() and xline() to draw grid lines. If you do that then image is probably better because with pcolor you need to have one more row and column of your matrix that you basically don't use because pcolor() does not display the last row and column of the matrix.
Walter Roberson
Walter Roberson le 23 Déc 2021
pcolor() interpolates; which is a problem for this purpose.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Line Plots dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by