Update README.md

This commit is contained in:
Jordan Wages 2018-06-14 20:39:32 -05:00 committed by GitHub
parent b4e693d55b
commit ae51396d2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 25 additions and 25 deletions

View File

@ -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`.