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

N1 N2 Peaks

Measures peak amplitude and latency in two response windows.

Identifiersignalstudio.n1n2
Categoryanalysis.features
Since0.6.0

Ports

PortDirectionTypeNotes
ininputEpochs
outoutputTable

Parameters

NameTypeDefaultMeaning
n1_windowstring0.010,0.050 sSearch window for the first peak.
n2_windowstring0.050,0.300 sSearch window for the second peak.
polarityenumauto
one of: auto, negative, positive

Manifest

card.json
{
  "id": "signalstudio.n1n2",
  "name": "N1 N2 Peaks",
  "category": "analysis.features",
  "inputs": [
    {
      "id": "in",
      "type": "Epochs"
    }
  ],
  "outputs": [
    {
      "id": "out",
      "type": "Table"
    }
  ],
  "params": {
    "n1_window": {
      "type": "string",
      "default": "0.010,0.050",
      "unit": "s",
      "doc": "Search window for the first peak."
    },
    "n2_window": {
      "type": "string",
      "default": "0.050,0.300",
      "unit": "s",
      "doc": "Search window for the second peak."
    },
    "polarity": {
      "type": "enum",
      "default": "auto",
      "values": [
        "auto",
        "negative",
        "positive"
      ]
    }
  }
}
Edit this page on GitHub