how to sum up all rows and put the value in a new column next to the last one

3 views (last 30 days)
Hello I am trying to sum up all the rows in a matrix, and put the sum in a new column just next to the last one in the same matrix. the number of rows is 1340, but the number of columns is random, does anyone have any idea how to make it in matlab?
many thanks!

Accepted Answer

Jan
Jan on 10 Jan 2013
Edited: Jan on 10 Jan 2013
A = rand(15, 1340); % Test data
B = [A, sum(A, 2)];
Is this solution surprising to you? If so, please read the "Getting Started" chapters of the documentation, where such fundamental basics are explained exhaustively.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!