Skip to main content

mne_process_stc

Overview

mne_process_stc processes STC source estimate files: scale values, export to ASCII text, or copy to a new binary STC file.

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

Usage

mne_process_stc [options]

Options

OptionDescription
--in <file>Input STC file
--out <file>Output binary STC file
--outasc <file>Output ASCII file
--scaleby <factor>Multiply values by this factor
--scaleto <value>Scale data so that the maximum equals this value
--helpPrint help
--versionPrint version

Example

# Scale STC values by a factor and write binary output
mne_process_stc --in sam-lh.stc --out sam-scaled-lh.stc --scaleby 1e9

# Export to ASCII with normalized maximum
mne_process_stc --in sam-lh.stc --outasc sam-lh.txt --scaleto 1.0

See Also