Skip to main content

mne_change_nave

Overview

mne_change_nave modifies the nave (number of averages) field in evoked data. This is useful when the nave value needs to be corrected after data processing, or when simulating different averaging conditions.

This is a C++ port of the original MNE-C tool by Matti Hämäläinen.

Usage

mne_change_nave [options]

Options

OptionDescription
--meas <file>Input evoked FIFF file
--nave <value>New nave value
--set <index>Which evoked set index to modify (default: 0)
--out <file>Output FIFF file
--helpPrint help
--versionPrint version

Example

# Set nave to 100 for the first evoked set
mne_change_nave --meas sam-ave.fif --nave 100 --out sam-fixed-ave.fif

# Modify the second evoked set (index 1)
mne_change_nave --meas sam-ave.fif --nave 50 --set 1 --out sam-fixed-ave.fif

See Also