Problem 44739. Return all matrix elements except elements on diagonal

Consider a given Matrix

A=[a b c;
   d e f;
   g h i]

then return a row vector T such that it contains all the Elements of Matrix A except the Elements on the diagonal.

So

T=[b c d f g h]

Solution Stats

42.62% Correct | 57.38% Incorrect
Last Solution submitted on Apr 04, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers47

Suggested Problems

More from this Author4

Community Treasure Hunt

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

Start Hunting!