How to sum two rows at a time in matrix

1 Ansicht (letzte 30 Tage)
Vishal Sharma
Vishal Sharma am 19 Jun. 2017
Beantwortet: Adam am 19 Jun. 2017
I have a matrix of size 6 by 3
A = [1 2 3; 3 4 5; 4 5 6; 5 4 3; 3 4 3; 3 2 1]
I want to make sum of two rows at a time, so as to get result
[18; 27; 16]

Akzeptierte Antwort

Adam
Adam am 19 Jun. 2017
sum( reshape( A', 6, 3 ) )

Weitere Antworten (0)

Kategorien

Mehr zu Multidimensional Arrays finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by