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

1 次查看(过去 30 天)
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!

采纳的回答

Jan
Jan 2013-1-10
编辑:Jan 2013-1-10
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.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by