Navigation: Function Reference > Study Formula Functions

Study Formula Functions

Top  Previous  Next

The best way to become familiar with ScanExpert study formulas is to review the source code for the many formulas that ship with the product. These can be found in the Studies folder of the ScanExpert data directory.

 

Each study formula that you create will have an object of type TEStudy associated with it that keeps track of various properties associated with the study such as the input parameter(s), the input stream(s), as well as the output stream that is generated by the study. From within any study, this TEStudy object can be accessed by the variable name of ThisStudy. The following methods are available for the TEStudy object:

 

ThisStudy.addValue()

ThisStudy.setValue()

ThisStudy.getValue()

ThisStudy.setPrimed()

ThisStudy.getPrimed()

ThisStudy.getNumBars()

ThisStudy.getStudyName()

ThisStudy.getInputParameter()

ThisStudy.getInputStream()

ThisStudy.getJurikJMA()

ThisStudy.getJurikRSX()

ThisStudy.getJurikVEL()

ThisStudy.getJurikDMX()

ThisStudy.getStorage()

ThisStudy.getDoubleArray()

Study Utility Functions