Code Monkey home page Code Monkey logo

Comments (2)

stulp avatar stulp commented on August 22, 2024

Numerical differentiation can be implemented as linear convolution. In Matlab for instance, diff(X) is basically the same as conv(X,[1,-1]). If you know the sample interval dt, it would be diff(X)/dt and conv(X,[1,-1]/dt)

https://bugra.github.io/work/notes/2014-06-13/first-second-derivative-convolution-quadratic-fitting-and-all-that-via-MCMC/#Taking-Derivatives-through-convolution

diffnc (as originally implemented by Stefan Schaal in Matlab, see the comments) works the same, but also smooths the signal by taking both neighbouring samples into account, i.e. conv(X,[1,0,-1]/2*dt)

diffnc is essentially a "minimal" version of this
https://en.wikipedia.org/wiki/Savitzky%E2%80%93Golay_filter
with m=3 and k=1.

In Python it would perhaps be more sensible to use numpy.gradient. But I copied diffnc from previous Matlab code I was using to ensure the result would be the same.

from dmpbbo.

RanCao2018 avatar RanCao2018 commented on August 22, 2024

I got it. Thank you

from dmpbbo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.