Docs / Cards / Morse Wavelet
Morse Wavelet
Time-frequency decomposition with generalised Morse wavelets.
| Identifier | signalstudio.morse_tf |
|---|---|
| Category | analysis.timefrequency |
| Since | 0.5.0 |
Ports
| Port | Direction | Type | Notes |
|---|---|---|---|
in | input | Epochs | |
out | output | Matrix |
Parameters
| Name | Type | Default | Meaning |
|---|---|---|---|
fmin | float | 2.0 Hz | |
fmax | float | 200.0 Hz | |
n_freqs | int | 60 | Number of frequency bins, spaced logarithmically. |
beta | float | 3.0 | Morse wavelet beta parameter. |
gamma | float | 60.0 | Morse wavelet gamma parameter. |
Manifest
card.json
{
"id": "signalstudio.morse_tf",
"name": "Morse Wavelet",
"category": "analysis.timefrequency",
"inputs": [
{
"id": "in",
"type": "Epochs"
}
],
"outputs": [
{
"id": "out",
"type": "Matrix"
}
],
"params": {
"fmin": {
"type": "float",
"default": 2.0,
"unit": "Hz"
},
"fmax": {
"type": "float",
"default": 200.0,
"unit": "Hz"
},
"n_freqs": {
"type": "int",
"default": 60,
"doc": "Number of frequency bins, spaced logarithmically."
},
"beta": {
"type": "float",
"default": 3.0,
"doc": "Morse wavelet beta parameter."
},
"gamma": {
"type": "float",
"default": 60.0,
"doc": "Morse wavelet gamma parameter."
}
}
}