Subtract row from previous row

26 views (last 30 days)
C Smyth
C Smyth on 12 Mar 2018
Commented: Farhan Mustafa on 24 May 2020
I have a column of data (n long) and I want to subtract each row from the previous. So x = 1 2 6 1 etc
and I want to subtract row 2 from row 1, then row 3 from row 2 ... etc. Ans = -1 -4 5 etc.

Accepted Answer

Birdman
Birdman on 12 Mar 2018
x(1:end-1)-x(2:end)

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!