How to get sum of columns even if the matrix is a row vector?

1 view (last 30 days)
I'd like to get the sum of columns in a matrix, but when the matrix has only one row, the SUM function gives the sum of all elements in the row. How can I skip that? The ideal solution will return the row vector itself.

Accepted Answer

Matt J
Matt J on 4 Oct 2016
Edited: Matt J on 4 Oct 2016
sum(theMatrix,1)

More Answers (0)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!