mirror of
https://github.com/wagesj45/cs-mic.git
synced 2024-12-22 01:32:43 -06:00
Update README.md
This commit is contained in:
parent
b4e693d55b
commit
ae51396d2c
1 changed files with 25 additions and 25 deletions
16
README.md
16
README.md
|
@ -214,27 +214,27 @@ The following is a list of the internally recognized functions in CS-MIC:
|
|||
|
||||
`sin(double expression)`
|
||||
|
||||
Returns the sine value of a given expression.
|
||||
Returns the sine value of a given `expression`.
|
||||
|
||||
`cos(double expression)`
|
||||
|
||||
Returns the cosine value of a given expression.
|
||||
Returns the cosine value of a given `expression`.
|
||||
|
||||
`tan(double expression)`
|
||||
|
||||
Returns the tangent value of a given expression.
|
||||
Returns the tangent value of a given `expression`.
|
||||
|
||||
`round(double expression)`
|
||||
|
||||
Rounds an expression to the nearest whole number.
|
||||
Rounds an `expression` to the nearest whole number.
|
||||
|
||||
`sqrt(double expression)`
|
||||
|
||||
Returns the square root of an expression.
|
||||
Returns the square root of an `expression`.
|
||||
|
||||
`abs(double expression)`
|
||||
|
||||
Returns the absolute value of a given expression.
|
||||
Returns the absolute value of a given `expression`.
|
||||
|
||||
`exp(double expression)`
|
||||
|
||||
|
@ -242,9 +242,9 @@ Returns the constant e raised to a given power.
|
|||
|
||||
`log(double expression1, double expression2)`
|
||||
|
||||
Returns the log of expression1 to the base of expression2
|
||||
Returns the log of `expression1` to the base of `expression2`
|
||||
|
||||
`precision(double expression1, int expression2)`
|
||||
|
||||
Returns the value of expression1 to a given precision. For example, precision(12.3456789, 4) will return 12.3456.
|
||||
Returns the value of `expression1` to a given precision. For example, `precision(12.3456789, 4)` will return `12.3456`.
|
||||
|
||||
|
|
Loading…
Reference in a new issue