Consecutive subtraction of the entries of a vector
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hmm!
am 13 Jan. 2021
Kommentiert: James Tursa
am 14 Jan. 2021
I am a novist in MATLAB. I have no idea of how to subtract the entries of a vector consecutively. Say if A=[3,5,9,11,15]' and I want something like this B =[3, 2, 4, 2, 4]. Any help will do, thanks in advance.
0 Kommentare
Akzeptierte Antwort
James Tursa
am 13 Jan. 2021
Bearbeitet: James Tursa
am 13 Jan. 2021
If A is a row vector:
B = [A(1) diff(A)];
If A is a column vector:
B = [A(1);diff(A)];
3 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!