| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
MathGL have a special class mglExpr for evaluating of formula specified by the string. This class is defined in #include <mgl2/mgl.h>. It is the fast variant of formula evaluation. At creation it will be recognized and compiled to tree-like internal code. At evaluation stage only fast calculations are performed. There is no difference between lower or upper case in formulas. If argument value lie outside the range of function definition then function returns NaN. See section Textual formulas.
mglExpr: mglExpr (const char *expr)HMEX mgl_create_expr (const char *expr)Parses the formula expr and creates formula-tree. Constructor recursively parses the formula and creates a tree-like structure containing functions and operators for fast further evaluating by Calc() or CalcD() functions.
mglExpr: ~mglExpr ()HMEX mgl_delete_expr (HMEX ex)Deletes the instance of class mglExpr.
mglExpr: float Eval (float x, float y, float z)float mgl_expr_eval (HMEX ex, float x, float y, float z)Evaluates the formula for 'x','r'=x, 'y','n'=y, 'z','t'=z, 'a','u'=u.
mglExpr: float Eval (float var[26])float mgl_expr_eval_v (HMEX ex, float *var)Evaluates the formula for variables in array var[0,...,’z’-’a’].
mglExpr: float Diff (char dir, float x, float y, float z)float mgl_expr_diff (HMEX ex, char dir, float x, float y, float z)Evaluates the formula derivation respect to dir for 'x','r'=x, 'y','n'=y, 'z','t'=z, 'a','u'=u.
mglExpr: float Diff (char dir, float var[26])float mgl_expr_diff_v (HMEX ex, char dir, float *var)Evaluates the formula derivation respect to dir for variables in array var[0,...,’z’-’a’].
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] |
This document was generated by Autobuild on July 16, 2012 using texi2html 1.82.