I have a noisy signal x(t) that I want to differentiate in time, in order to obtain x'(t). Though numerical finite difference approximantion does not work well on noisy signal, I would like to differentiate its continuous wavelet transform (cwt) and to reconstruct the derivative from its wavelet transform. Is it possible to do so? Given the wavelet transform of the original signal, how do I differentiate it in order to get the wavelet transform of its derivative? I am using complex Morlet wavelet. Please bear in mind that I no matematician, so please be as human as you can in your answer.
2026-05-11 06:12:11.1778479931
Signal differentiation by wavelet transform
1.6k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in DERIVATIVES
- Derivative of $ \sqrt x + sinx $
- Second directional derivative of a scaler in polar coordinate
- A problem on mathematical analysis.
- Why the derivative of $T(\gamma(s))$ is $T$ if this composition is not a linear transformation?
- Does there exist any relationship between non-constant $N$-Exhaustible function and differentiability?
- Holding intermediate variables constant in partial derivative chain rule
- How would I simplify this fraction easily?
- Why is the derivative of a vector in polar form the cross product?
- Proving smoothness for a sequence of functions.
- Gradient and Hessian of quadratic form
Related Questions in WAVELETS
- Power spectrum of field over an arbitrarily-shaped country
- Are there analogues to orthogonal transformations in non-orientable surfaces?
- Can anyone please tell me how to calculate discrete wavelet transform of a derivatve?
- Orthogonality of Meyer Wavelets
- "There are no smooth, symmetric, compactly supported wavelets."
- analogue of Fourier transform where i is replaced by $sqrt{i}$
- Scaling function to form a multiresolution analysis
- Explicit formula of scaling coefficient for scaling function
- Is wavelet noise reduction just removing the higher frequency coefficients?
- Describe a signal presence in a time series
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
geometry
circles
algebraic-number-theory
functions
real-analysis
elementary-set-theory
proof-verification
proof-writing
number-theory
elementary-number-theory
puzzle
game-theory
calculus
multivariable-calculus
partial-derivative
complex-analysis
logic
set-theory
second-order-logic
homotopy-theory
winding-number
ordinary-differential-equations
numerical-methods
derivatives
integration
definite-integrals
probability
limits
sequences-and-series
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
I usually work more with Discrete Wavelet Transforms, but I will give it a go. I base this guide below on an own rewritten version of Matlab source implementation of the Morlet wavelet.
$$ W(X) = ((\pi F_B)^{-0.5})\exp(2i\pi\cdot F_C \cdot X)\exp\left(-\frac{X^2}{F_B}\right)$$
It seems to me that the real and imaginary parts of the Morlet wavelet are in quadrature. This means they measure the whole phase range for a range of fourier frequencies. The first order derivative will be parts of the odd component, since a first order differential operator is, well odd. You have a bunch of parameters:
What is important if you want to create a differential approximator is to fine tune the bandwidth parameter. Too narrow band width and the wave will be very long, including many zero-crossings.
Example of Morlet wavelet where the wave is too long. We need to narrow it down in the time-domain, i.e. choose a shorter Gaussian window. The black envelope is the shape of our broad gaussian.
Here we can see that with a tighter Gaussian black envelope we pick out just one zero crossing for the odd part, which would be suitable to measure a derivative.