Problem 1850. Create a matrix with difference of each row of input matrix

With a given input matrix A, create a output matrix B in such a way that each row in B is a difference of rows of input matrix A.

e.g A = [1 2 3; 7 8 9; 10 40 60;]

Then B = [6 6 6; %difference between row#2 and row #1 3 32 51; %difference between row#3 and row #2 -9 -38 -57;] %difference between row#1 and row #3

Solution Stats

68.0% Correct | 32.0% Incorrect
Last Solution submitted on Nov 21, 2024

Solution Comments

Show comments

Problem Recent Solvers74

Suggested Problems

More from this Author25

Community Treasure Hunt

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

Start Hunting!