Subtracting one row from a previous row in a single column of n long data
11 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Jacob Allen
il 5 Feb 2022
Commentato: Walter Roberson
il 10 Feb 2022
I have a single column of data that is n long and I want to be able to subtract the second row in that column by the first and have that pattern repeat. (third row subtracted by the second, fourth row subtracted by the thrid and so on).
Ex:
1
5
6
7
4
3
I would like to be able to have a code that does 5-1, 6-5, 7-6, 4-7, 4-3.
I am pretty new to MatLab so if I am using incorrect terminology or my question is confusing in any way please let me know.
0 Commenti
Risposta accettata
Walter Roberson
il 5 Feb 2022
A = randi(9, 8, 2) %some data to illustrate
diff(A, [], 1) %subtract row by row
0 Commenti
Più risposte (1)
Vedere anche
Categorie
Scopri di più su General Applications in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!