difference between adjacent elements of a vector
13 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Fidele Adanvo
il 28 Nov 2020
Modificato: Fidele Adanvo
il 28 Nov 2020
If I need to calculate the difference between the adjacent elements and know the size of the vector a priori, you will know what to tell me?
Por exemple..
A=[1,4,6,10,33,200,..............................]; A is
out=[A(1)-A(2), A(2)-A(3), A(3)-A(4),...........A(n-1)-A(n)]
Important vector "A" do not follow any rule or sequence. A is a matrix of size n whose value of n is not known a priori.
0 Commenti
Risposta accettata
Ameer Hamza
il 28 Nov 2020
Modificato: Ameer Hamza
il 28 Nov 2020
A = [1,4,6,10,33,200];
out = A(1:end-1) - A(2:end);
Read about indexing here: https://www.mathworks.com/company/newsletters/articles/matrix-indexing-in-matlab.html
1 Commento
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Creating and Concatenating Matrices 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!