Installation guide
7 Tuning and Managing M-Files
ClockSpeed: 3.0000e+009
Name: 'MATLAB'
5 The FunctionTable field is an array of structures, where each structure
represents an M-function, M-subfunction, MEX-function, or, because the
builtin option is specified, a MATLAB built-in function.
stats.FunctionTable
ans =
41x1 struct array with fields:
CompleteName
FunctionName
FileName
Type
NumCalls
TotalTime
TotalRecursiveTime
Children
Parents
ExecutedLines
IsRecursive
PartialData
6 View the second structure in FunctionTable.
stats.FunctionTable(2)
ans =
CompleteName: [1x79 char]
FunctionName: 'ode23'
FileName: [1x73 char]
Type: 'M-function'
NumCalls: 1
TotalTime: 0.3902
TotalRecursiveTime: 0
Children: [20x1 struct]
Parents: [0x1 struct]
ExecutedLines: [139x3 double]
7-46