You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
Required fields*
- 1$\begingroup$ Thank you for recalling these important points about wavelet theory, which are necessary indeed to understand how it works. But here the question would be more about building a framework code that would work on audio signal for example. The questions are : how to deal with these infinite sums, how to choose the windows (or rather mother-wavelet), how to do it using pyWavelets in Python (or another equivalent language, I'll translate into Python then), how to choose the parameters (like in my example for audio : sampling rate=44100, fft window = 4096, overlap=4, etc.) $\endgroup$Basj– Basj2013-11-19 07:51:50 +00:00Commented Nov 19, 2013 at 7:51
- $\begingroup$ Your notion of overcompleteness is not accurate. A basis being complete means, that the canonical projector onto the basis is the identity operator. But to write is as the sum of the outer product you need orthonormality. For overcompleteness you cannot have orthonormality, so that outer product decomposition does not work. But you can make it work by saying a basis is complete (and possibly overcomplete), if there are coefficients $a_k$ so that $\sum_k \left| k \rangle a_k \langle k \right| = \mathrm{Id}$ $\endgroup$Jazzmaniac– Jazzmaniac2013-11-19 10:06:57 +00:00Commented Nov 19, 2013 at 10:06
- $\begingroup$ hmm you have introduced a morlet wavelet, but all wavelet doesn't have fb and fc, so they might have constant $K$, also its impossible to make a DWT with morlet, bx its not orthogonal, actually I couldn't get a fine resolution for frequency estimation with DWT compare to the cwt or STFT @apt1002 $\endgroup$SAH– SAH2013-11-19 10:24:24 +00:00Commented Nov 19, 2013 at 10:24
- $\begingroup$ In addition, finding these coefficients $a_k$ is non trivial, and also non-unique. The linear dependence of the basis vector implies, that there are infinitely many possible such $a_k$ if the basis is overcomplete. That implies your "filter" is not well defined, in fact, it's not defined at all, because you don't know what you control with your filter function $f$. Each aspect of the signal is realized in many linear dependent wavelet basis vectors. So your theory falls apart. $\endgroup$Jazzmaniac– Jazzmaniac2013-11-19 11:12:56 +00:00Commented Nov 19, 2013 at 11:12
- 1$\begingroup$ The best way to see if it works or not would be to provide a minimal code example (with pyWavelet for example it should be possible in a few lines I imagine) (I'll do itas well it once I understand it, I think I need a few more days reading about wavelets!) $\endgroup$Basj– Basj2013-11-19 16:04:40 +00:00Commented Nov 19, 2013 at 16:04
| Show 6 more comments
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
- create code fences with backticks ` or tildes ~ ```
like so
``` - add language identifier to highlight code ```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible) <https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
- MathJax equations
$\sin^2 \theta$
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. image-processing), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you
lang-py