v2.0.0
Loading...
Searching...
No Matches
MNELIB::MneProjOp Class Reference

One linear projection item. More...

#include <mne_proj_op.h>

Public Types

typedef QSharedPointer< MneProjOpSPtr
typedef QSharedPointer< const MneProjOpConstSPtr

Public Member Functions

 MneProjOp ()
 ~MneProjOp ()

Static Public Member Functions

static void mne_free_proj_op_proj (MneProjOp *op)
static MneProjOpmne_proj_op_combine (MneProjOp *to, MneProjOp *from)
static void mne_proj_op_add_item_act (MneProjOp *op, MneNamedMatrix *vecs, int kind, const QString &desc, int is_active)
static void mne_proj_op_add_item (MneProjOp *op, MneNamedMatrix *vecs, int kind, const QString &desc)
static MneProjOpmne_dup_proj_op (MneProjOp *op)
static MneProjOpmne_proj_op_average_eeg_ref (const QList< FIFFLIB::FiffChInfo > &chs, int nch)
static int mne_proj_op_affect (MneProjOp *op, const QStringList &list, int nlist)
static int mne_proj_op_affect_chs (MneProjOp *op, const QList< FIFFLIB::FiffChInfo > &chs, int nch)
static int mne_proj_op_proj_vector (MneProjOp *op, float *vec, int nvec, int do_complement)
static MneProjOpmne_read_proj_op_from_node (FIFFLIB::FiffStream::SPtr &stream, const FIFFLIB::FiffDirNode::SPtr &start)
static MneProjOpmne_read_proj_op (const QString &name)
static void mne_proj_op_report_data (FILE *out, const char *tag, MneProjOp *op, int list_data, char **exclude, int nexclude)
static void mne_proj_op_report (FILE *out, const char *tag, MneProjOp *op)

Public Attributes

QList< MNELIB::MneProjItem * > items
int nitems
QStringList names
int nch
int nvec
float ** proj_data

Detailed Description

One linear projection item.

Implements an MNE Projection Operator (Replaces *mneProjOp,mneProjOpRec; struct of MNE-C mne_types.h).

Definition at line 83 of file mne_proj_op.h.

Member Typedef Documentation

◆ ConstSPtr

typedef QSharedPointer<const MneProjOp> MNELIB::MneProjOp::ConstSPtr

Const shared pointer type for MneProjOp.

Definition at line 87 of file mne_proj_op.h.

◆ SPtr

typedef QSharedPointer<MneProjOp> MNELIB::MneProjOp::SPtr

Shared pointer type for MneProjOp.

Definition at line 86 of file mne_proj_op.h.

Constructor & Destructor Documentation

◆ MneProjOp()

MneProjOp::MneProjOp ( )

Constructs the MNE Projection Operator Refactored: mne_new_proj_op (mne_lin_proj.c)

Definition at line 213 of file mne_proj_op.cpp.

◆ ~MneProjOp()

MneProjOp::~MneProjOp ( )

Destroys the MNE Projection Operator Refactored: mne_free_proj_op (mne_lin_proj.c)

Definition at line 223 of file mne_proj_op.cpp.

Member Function Documentation

◆ mne_dup_proj_op()

MneProjOp * MneProjOp::mne_dup_proj_op ( MneProjOp * op)
static

Definition at line 331 of file mne_proj_op.cpp.

◆ mne_free_proj_op_proj()

void MneProjOp::mne_free_proj_op_proj ( MneProjOp * op)
static

Free Substructure; TODO: Remove later on Refactored: ne_free_proj_op_proj (mne_lin_proj.c)

Definition at line 235 of file mne_proj_op.cpp.

◆ mne_proj_op_add_item()

void MneProjOp::mne_proj_op_add_item ( MneProjOp * op,
MneNamedMatrix * vecs,
int kind,
const QString & desc )
static

Definition at line 324 of file mne_proj_op.cpp.

◆ mne_proj_op_add_item_act()

void MneProjOp::mne_proj_op_add_item_act ( MneProjOp * op,
MneNamedMatrix * vecs,
int kind,
const QString & desc,
int is_active )
static

Definition at line 274 of file mne_proj_op.cpp.

◆ mne_proj_op_affect()

int MneProjOp::mne_proj_op_affect ( MneProjOp * op,
const QStringList & list,
int nlist )
static

Definition at line 393 of file mne_proj_op.cpp.

◆ mne_proj_op_affect_chs()

int MneProjOp::mne_proj_op_affect_chs ( MneProjOp * op,
const QList< FIFFLIB::FiffChInfo > & chs,
int nch )
static

Definition at line 410 of file mne_proj_op.cpp.

◆ mne_proj_op_average_eeg_ref()

MneProjOp * MneProjOp::mne_proj_op_average_eeg_ref ( const QList< FIFFLIB::FiffChInfo > & chs,
int nch )
static

Definition at line 353 of file mne_proj_op.cpp.

◆ mne_proj_op_combine()

MneProjOp * MneProjOp::mne_proj_op_combine ( MneProjOp * to,
MneProjOp * from )
static

Definition at line 252 of file mne_proj_op.cpp.

◆ mne_proj_op_proj_vector()

int MneProjOp::mne_proj_op_proj_vector ( MneProjOp * op,
float * vec,
int nvec,
int do_complement )
static

Definition at line 428 of file mne_proj_op.cpp.

◆ mne_proj_op_report()

void MneProjOp::mne_proj_op_report ( FILE * out,
const char * tag,
MneProjOp * op )
static

Definition at line 708 of file mne_proj_op.cpp.

◆ mne_proj_op_report_data()

void MneProjOp::mne_proj_op_report_data ( FILE * out,
const char * tag,
MneProjOp * op,
int list_data,
char ** exclude,
int nexclude )
static

Definition at line 650 of file mne_proj_op.cpp.

◆ mne_read_proj_op()

MneProjOp * MneProjOp::mne_read_proj_op ( const QString & name)
static

Definition at line 630 of file mne_proj_op.cpp.

◆ mne_read_proj_op_from_node()

MneProjOp * MneProjOp::mne_read_proj_op_from_node ( FIFFLIB::FiffStream::SPtr & stream,
const FIFFLIB::FiffDirNode::SPtr & start )
static

Definition at line 475 of file mne_proj_op.cpp.

Member Data Documentation

◆ items

QList<MNELIB::MneProjItem*> MNELIB::MneProjOp::items

Definition at line 144 of file mne_proj_op.h.

◆ names

QStringList MNELIB::MneProjOp::names

Definition at line 146 of file mne_proj_op.h.

◆ nch

int MNELIB::MneProjOp::nch

Definition at line 147 of file mne_proj_op.h.

◆ nitems

int MNELIB::MneProjOp::nitems

Definition at line 145 of file mne_proj_op.h.

◆ nvec

int MNELIB::MneProjOp::nvec

Definition at line 148 of file mne_proj_op.h.

◆ proj_data

float** MNELIB::MneProjOp::proj_data

Definition at line 149 of file mne_proj_op.h.


The documentation for this class was generated from the following files: