create new matrix with another matrix (downsampling)

1 Ansicht (letzte 30 Tage)
Kamyar Mazarei
Kamyar Mazarei am 9 Apr. 2021
Kommentiert: Dyuman Joshi am 11 Apr. 2021
hi
i have a 1xm matrix 'A' and want to make a new matrix that is 1xn 'B'
matrix B has values from matrix A IF the change in values are greater than 5 each time (if A(1,m)-A(1,m+1)>5)
(B is kinda down sample of A with a thereshold in pairs)
  1 Kommentar
Dyuman Joshi
Dyuman Joshi am 11 Apr. 2021
B=A(diff(A)>5)
note that diff(A) is A(i+1) - A(i) and not A(i) - A(i+1) as you mentioned.

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by