GetAllNumResSummaryData

Returns the list of all the values in the Numerical Results Summary Window of the first graphical view of the document.

Syntax

doc.GetAllNumResSummaryData()

Parameters

None.

Return

Returns the list of all the values in the Numerical Results Summary Window of the first graphical view of the document.

Note

Available only in Python.

You can also use global function nex.GetAllNumResSummaryData(doc):

import nex
doc = nex.GetActiveDocument()
nex.ApplyTemplate(doc, 'Autocorrelograms')
summary = nex.GetAllNumResSummaryData(doc)

Examples

Python

import nex
doc = nex.GetActiveDocument()
nex.ApplyTemplate(doc, "PerieventHistograms")
summary = doc.GetAllNumResSummaryData()
# summary now contains a list object with all the values of summary of numerical results window
# for example, to get the 5-th value of the first column of summary of numerical results, use summary[0][4]