10 by 10 matrix grid

Hi all
Im trying to make a battleship game and as a start i need to make a 10*10 matrix grid with (letter,number) coordinates. Ex: A6,C3,D4
That is, i need the first column of every row to be a letter from (a-j) and the the rest to be numbers with 1 on the top and 10 at the bottom
How do i do this?
thanks in advance

2 件のコメント

David Hill
David Hill 2020 年 3 月 5 日
I would just set up a matrix of zeros
BSgrid=zeros(10);
Then 'A6' index can just be converted to (1 6) to index into the matrix.
Tarek Eid
Tarek Eid 2020 年 3 月 10 日
That did the trick
thanks David

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeMatrix Indexing についてさらに検索

製品

質問済み:

2020 年 3 月 5 日

コメント済み:

2020 年 3 月 10 日

Community Treasure Hunt

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

Start Hunting!

Translated by