LinkVTC Method


Description

Links a 3D time course file (VTC) to a 3D anatomical project (VMR).

Syntax

objDocument.LinkVTC(strVTCFileName, intLoadInMemory)

Remarks

Valid only if objDocument is of type VMR. The VMR and VTC file must be in the same space, normally Talairach space. After linking the VTC file, statistical tests can be performed across the data set and time courses and event-related averages can be shown. If the second parameter is set to "1", the VTC file is load into working memory, if it is set to "0", a file reference is created and used to access the file when necessary.

Example

' VBScript
Set doc = BrainVoyager.OpenDocument("subject.vmr")
doc.LinkVTC "cg_objects_SC.vtc", 0
doc.TemporalSmoothingFD3D 3, 200

// JScript
doc = BrainVoyager.OpenDocument("subject.vmr");
doc.LinkVTC("cg_objects_SC.vtc", 0);
doc.TemporalSmoothingFD3D(3, 200);

# PerlScript
$doc = $BrainVoyager->OpenDocument("subject.vmr");
$doc->LinkVTC("cg_objects_SC.vtc", 0);
$doc->TemporalSmoothingFD3D(3, 200);