Problem 45177. Summing Rows and Columns

Create a matrix y of size (n+1) whose last column's elements are the summation of the elements of all the other columns and last row's elements are the summation of the elements of all the other rows; where 'n' is the size of the input matrix 'x'.

For example

   x = [ 1  2  3
         4  5  6
         7  8  9 ]

then

   y = [ 1  2  3  6 
         4  5  6 15
         7  8  9 24
        12 15 18 45 ]

Solution Stats

60.23% Correct | 39.77% Incorrect
Last Solution submitted on Mar 28, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers52

Suggested Problems

More from this Author165

Problem Tags

Community Treasure Hunt

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

Start Hunting!