From 752e1d6410deff5986222e6decb81f65ca14383a Mon Sep 17 00:00:00 2001 From: Arash Partow Date: Tue, 30 Dec 2014 17:18:13 +1100 Subject: [PATCH] C++ Mathematical Expression Library (ExprTk) http://www.partow.net/programming/exprtk/index.html --- readme.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/readme.txt b/readme.txt index d2db35a..38d9bc9 100644 --- a/readme.txt +++ b/readme.txt @@ -145,13 +145,13 @@ of C++ compilers: | := | Assign the value of x to y. Where y is either a variable| | | or vector type. (eg: y := x) | +----------+---------------------------------------------------------+ -| += | Increment x to by the value of the expression on the | -| | right-hand side. Where x is either a variable or vector | -| | type. (eg: x += abs(y - z)) | +| += | Increment x by the value of the expression on the right | +| | hand side. Where x is either a variable or vector type. | +| | (eg: x += abs(y - z)) | +----------+---------------------------------------------------------+ -| -= | Decrement x to by the value of the expression on the | -| | right-hand side. Where x is either a variable or vector | -| | type. (eg: x[i] -= abs(y + z)) | +| -= | Decrement x by the value of the expression on the right | +| | hand side. Where x is either a variable or vector type. | +| | (eg: x[i] -= abs(y + z)) | +----------+---------------------------------------------------------+ | *= | Assign the multiplication of x by the value of the | | | expression on the righthand side to x. Where x is either|