Change in diff function

4 visualizaciones (últimos 30 días)
Fatima Rashid
Fatima Rashid el 9 de Jul. de 2019
Comentada: Guillaume el 10 de Jul. de 2019
Hey, diff function takes difference of successive elements. How to change the function to take difference in a way that we skip successor element and take difference with next element of successor. Eg X(3)-X(1) , X(4)-X(2) , X(5)-X(3) and so on Note: diff of 2d array is being taken.

Respuesta aceptada

Guillaume
Guillaume el 9 de Jul. de 2019
You can't change the diff function, but it is trivial to implement your difference:
result = X(3:end) - X(1:end-2)
For a 2D array, you need to apply the indexing to the correct dimension, e.g. for difference between rows:
result = X(3:end, :) - X(1:end-2, :)
  2 comentarios
Fatima Rashid
Fatima Rashid el 9 de Jul. de 2019
Thankyou, what about if we need to apply same thing on an image.
Guillaume
Guillaume el 10 de Jul. de 2019
An image is a matrix like any other, you can do exactly the same.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Images en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by