Azzera filtri
Azzera filtri

Consecutive subtraction of the entries of a vector

5 visualizzazioni (ultimi 30 giorni)
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.

Risposta accettata

James Tursa
James Tursa il 13 Gen 2021
Modificato: James Tursa il 13 Gen 2021
If A is a row vector:
B = [A(1) diff(A)];
If A is a column vector:
B = [A(1);diff(A)];
  3 Commenti
James Tursa
James Tursa il 14 Gen 2021
B = [A(1);A(2:end)./A(1:end-1)];

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Startup and Shutdown in Help Center e File Exchange

Prodotti


Release

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by