SaveNumSummary

Saves the summary of numerical results to a text file with the specified name.

Syntax

SaveNumSummary(doc, filename)

Parameters

Parameter

Type

Description

doc

documentReference

Reference to the document.

filename

string

File path for saved results

Return

None.

Examples

Python

import nex
doc = nex.GetActiveDocument()
nex.DeselectAll(doc)
nex.SelectAllNeurons(doc)
nex.ApplyTemplate(doc, "Autocorrelograms")
nex.SaveNumSummary(doc, "C:\\Data\\res1summary.txt")

NexScript

doc = GetActiveDocument()
DeselectAll(doc)
SelectAllNeurons(doc)
ApplyTemplate(doc, "Autocorrelograms")
SaveNumSummary(doc, "C:\Data\res1summary.txt")