Clear Filters
Clear Filters

Subtracting elements in an array

1 view (last 30 days)
hi there,
I have an array lets say
A=[10 9 10; 1 2 3; 4 5 6]
How can create an array like this?
B=[10-1 9-2 10-3;10-1-4 9-2-5 10-3-6]
thanks in advance!
Nikolas

Accepted Answer

Star Strider
Star Strider on 21 Jan 2017
Edited: Star Strider on 21 Jan 2017
If I understand correctly what you are asking, this will work:
A=[10 9 10; 1 2 3; 4 5 6]
B = cumsum(-A(2:end,:))+A(1,:)
A =
10 9 10
1 2 3
4 5 6
B =
9 7 7
5 2 1
  9 Comments
Nikolas Spiliopoulos
Nikolas Spiliopoulos on 22 Jan 2017
ok got it, it works! thanks again mate..!!!

Sign in to comment.

More Answers (0)

Categories

Find more on Cell Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!