Find sum of numbers on the cornice of a matrix. - MATLAB Cody - MATLAB Central

Problem 46105. Find sum of numbers on the cornice of a matrix.

Difficulty:Rate
Given a matrix of random integers, calculate the sum of all the integers in the cornice of the matrix.
For example if MTX = [ 1 3 5 6;
4 7 9 2;
5 6 1 3;
7 9 2 1]
output = 1 + 3 + 5 + 6 + 4 + 2 + 5 + 3 + 7 + 9 + 2 + 1 = 48

Solution Stats

63.83% Correct | 36.17% Incorrect
Last Solution submitted on Mar 02, 2025

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers54

Suggested Problems

Community Treasure Hunt

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

Start Hunting!
Go to top of page