how to sum every each rows on matrix

3 Ansichten (letzte 30 Tage)
Risma Fitriyani
Risma Fitriyani am 27 Dez. 2022
Kommentiert: Image Analyst am 27 Dez. 2022
i have size matrix 5x25, i want to sum every each rows and the output would be 5x1 matrix. how to do that? thanks in advance

Akzeptierte Antwort

Rik
Rik am 27 Dez. 2022
Bearbeitet: Rik am 27 Dez. 2022
You can use the sum function:
data=rand(5,25);
sum(data,2)
ans = 5×1
13.3903 13.2063 14.1058 14.1462 11.5026

Weitere Antworten (0)

Kategorien

Mehr zu Matrix Indexing 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