Gets or sets the statistical threshold used in subsequent commands visualizing statistical maps.
objDocument.MapThreshold()
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.
' 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();
}