SaveNumResults
Saves the numerical results to a text file with the specified name.
Syntax
SaveNumResults(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.SaveNumResults(doc, "C:\\Data\\res1.txt")
NexScript
doc = GetActiveDocument()
DeselectAll(doc)
SelectAllNeurons(doc)
ApplyTemplate(doc, "Autocorrelograms")
SaveNumResults(doc, "C:\Data\res1.txt")