mirror of
https://github.com/ArashPartow/exprtk.git
synced 2025-06-22 16:28:57 +00:00
C++ Mathematical Expression Library (ExprTk) http://www.partow.net/programming/exprtk/index.html
This commit is contained in:
12
readme.txt
12
readme.txt
@ -145,13 +145,13 @@ of C++ compilers:
|
|||||||
| := | Assign the value of x to y. Where y is either a variable|
|
| := | Assign the value of x to y. Where y is either a variable|
|
||||||
| | or vector type. (eg: y := x) |
|
| | or vector type. (eg: y := x) |
|
||||||
+----------+---------------------------------------------------------+
|
+----------+---------------------------------------------------------+
|
||||||
| += | Increment x to by the value of the expression on the |
|
| += | Increment x by the value of the expression on the right |
|
||||||
| | right-hand side. Where x is either a variable or vector |
|
| | hand side. Where x is either a variable or vector type. |
|
||||||
| | type. (eg: x += abs(y - z)) |
|
| | (eg: x += abs(y - z)) |
|
||||||
+----------+---------------------------------------------------------+
|
+----------+---------------------------------------------------------+
|
||||||
| -= | Decrement x to by the value of the expression on the |
|
| -= | Decrement x by the value of the expression on the right |
|
||||||
| | right-hand side. Where x is either a variable or vector |
|
| | hand side. Where x is either a variable or vector type. |
|
||||||
| | type. (eg: x[i] -= abs(y + z)) |
|
| | (eg: x[i] -= abs(y + z)) |
|
||||||
+----------+---------------------------------------------------------+
|
+----------+---------------------------------------------------------+
|
||||||
| *= | Assign the multiplication of x by the value of the |
|
| *= | Assign the multiplication of x by the value of the |
|
||||||
| | expression on the righthand side to x. Where x is either|
|
| | expression on the righthand side to x. Where x is either|
|
||||||
|
Reference in New Issue
Block a user