You are here: Lua Scripting Resources eGuide > Lua Scripting API Reference Guide > Math Library Extension > getEvalSettings

12.3 getEvalSettings

math.getEvalSettings()

Returns a table of tables with the document settings that are currently being used by math.eval. These settings are equivalent to the current document settings unless a call has been made to setEvalSettings.

Listing 12.4: TI-Nspire™ Software Default Settings Returned by getEvalSettings

{
   {'Display Digits', 'Float6'},
   {'Angle Mode', 'Radian'},
   {'Calculation Mode', 'Auto'},
   {'Real or Complex Format', 'Real'},
   {'Exponential Format', 'Engineering'},
   {'Vector Format', 'Normal'},
   {'Base', 'Decimal'},
   {'Unit System', 'SI'}, }
}

Introduced in platform.apiLevel = '2.0'