Signal Studio is in public beta. Usable, but still moving. Join the beta
Docs / Cards / Epoch

Epoch

Cuts the continuous recording into trials around events.

Identifiersignalstudio.epoch
Categoryepoching
Since0.3.0

Ports

PortDirectionTypeNotes
ininputRaw
outoutputEpochs

Parameters

NameTypeDefaultMeaning
tminfloat-0.5 sStart of the window, relative to the event.
tmaxfloat1.0 sEnd of the window.
baselineenumpreWhich span to use for baseline correction.
one of: none, pre, whole

Manifest

card.json
{
  "id": "signalstudio.epoch",
  "name": "Epoch",
  "category": "epoching",
  "inputs": [
    {
      "id": "in",
      "type": "Raw"
    }
  ],
  "outputs": [
    {
      "id": "out",
      "type": "Epochs"
    }
  ],
  "params": {
    "tmin": {
      "type": "float",
      "default": -0.5,
      "unit": "s",
      "doc": "Start of the window, relative to the event."
    },
    "tmax": {
      "type": "float",
      "default": 1.0,
      "unit": "s",
      "doc": "End of the window."
    },
    "baseline": {
      "type": "enum",
      "default": "pre",
      "values": [
        "none",
        "pre",
        "whole"
      ],
      "doc": "Which span to use for baseline correction."
    }
  }
}
Edit this page on GitHub