how to add headers to a matrix?

1 Ansicht (letzte 30 Tage)
roshan varkey
roshan varkey am 1 Dez. 2013
Kommentiert: Azzi Abdelmalek am 1 Dez. 2013
i have a matrix 10x10 of zeros under the name play_space......and i would like to name the rows A-J and columns 1-10,so the when i want to change some values in the matrix i will have to type in eg: play_space(B,3).
could someone please help?

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 1 Dez. 2013
Why to use letters instead numbers?
A=rand(10)
A(2,3) % is simpler then using letters
  3 Kommentare
Azzi Abdelmalek
Azzi Abdelmalek am 1 Dez. 2013
Bearbeitet: Azzi Abdelmalek am 1 Dez. 2013
X=rand(10)
A=1;
B=2;
C=3;
% and so on
X(A,3)
Azzi Abdelmalek
Azzi Abdelmalek am 1 Dez. 2013
If you want to work with letters
A=rand(10)
h='A':'J'
A1=@(s,j) A(strfind(h,s),j)
A1('B',3)

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by