Azzera filtri
Azzera filtri

How to sum two rows at a time in matrix

2 visualizzazioni (ultimi 30 giorni)
Vishal Sharma
Vishal Sharma il 19 Giu 2017
Risposto: Adam il 19 Giu 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]

Risposta accettata

Adam
Adam il 19 Giu 2017
sum( reshape( A', 6, 3 ) )

Più risposte (0)

Categorie

Scopri di più su Multidimensional Arrays in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by