Referring to multiple columns
34 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi,
mat =
7 8 9 10
12 10 8 6
How can I refer to the first two columns of the matrix above? Thanks in advance.
0 Kommentare
Akzeptierte Antwort
Geoff Hayes
am 10 Sep. 2015
Ahmet - if mat is your matrix, then to get the first two colums (and all rows) you could do
mat(:,1:2)
which would give you
7 8
12 10
Note how the first colon indicates that we want all rows, and the 1:2 means that we want the columns one through two.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical 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!