MapThreshold Property


Description

Gets or sets the statistical threshold used in subsequent commands visualizing statistical maps.

Syntax

objDocument.MapThreshold()

Remarks

Valid only if objDocument is of type FMR or VMR. The method sets or retrieves the value used by a document to threshold statistical maps.

Example

' VBScript
doc.
LoadGLM "cg_objects.glm"
doc.
SelectAllPredictors
doc.
ShowGLM
For
thresh = 0.2 To 0.6 Step 0.05

  doc.MapThreshold = thresh

  doc.RefreshView

Next

// JScript
doc.
LoadGLM("cg_objects.glm");
doc.
SelectAllPredictors();
doc.
ShowGLM();
for
(thresh = 0.2; thresh<=0.6; thresh += 0.05)

{

  doc.MapThreshold = thresh;

  doc.RefreshView();

}

# PerlScript
$doc->
LoadGLM("cg_objects.glm");
$doc->
SelectAllPredictors();
$doc->
ShowGLM();
for
($thresh = 0.2; $thresh<=0.6; $thresh += 0.05)

{

  $doc->MapThreshold = thresh;

  $doc->RefreshView();

}