NeuroAnalyzer plugin: plot envelope
Find a file
2026-04-04 10:29:57 +02:00
src update 2026-04-04 10:29:57 +02:00
.gitignore add: .gitignore 2024-05-06 10:57:45 +02:00
.JuliaFormatter.toml update 2026-04-04 10:29:57 +02:00
LICENSE license changed to 2-clause BSD 2023-07-30 11:54:55 +02:00
README.md update: README.md 2026-02-12 00:15:04 +01:00

plot_env.jl

NeuroAnalyzer plugin: plot amplitude, Hilbert, power or spectrogram envelope.

This software is licensed under The 2-Clause BSD License.

Usage

Amplitude:

plot_env(eeg, ch="Fp1", ep=1, type=:amp)

Average over epochs:

plot_env(eeg, ch="Fp1", type=:amp, amethod=:mean)
plot_env(eeg, ch="Fp1", type=:amp, amethod=:median)

Hilbert envelope:

plot_env(eeg, ch="Fp1", ep=1, type=:hamp)

Power spectrum:

plot_env(eeg, ch="Fp1", ep=1, type=:pow)

Spectrogram:

plot_env(eeg, ch="Fp1", amethod=:mean, type=:spec, flim=(0, 30))