how do i go along 2Darray matrix from middle of array
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
minion001
am 16 Sep. 2017
Beantwortet: Walter Roberson
am 16 Sep. 2017
for e.g i have a matrix
B=[1 6 8 9 1 5; 9 8 7 6 2 6; 2 5 4 9 3 7; 1 2 5 8 7 2]
i want to start from middle of array (3,3) and go across to the right or to the left, how would i do this? without getting error messages, and also how will i do this for any given matrix. even if it is a (5 x 9) matrix, or (3 x 3) matrix
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 16 Sep. 2017
B(3,3:end) %across to the right
B(3, 1:3) %across from the left
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Resizing and Reshaping Matrices 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!