Note: You do not have to use the [Math] context to display a math variable
later in the page. Just put the variable name inside brackets: [varname].
Both [Math]varname[/Math] and [varname] display the same thing.
To calculate a mathematical equation, put it inside a Math context. You may put any [xxx] variables inside the context. Dates and times can also be calculated. To distinguish dates and times from plain numbers, put them inside curly-braces: {12/01/1997}. You cannot mix both dates and times in one equation.
You may also create up to 150 math variables by name. These named variables can be used in any other [Math] context in the template: [Math]fred=12/7.5[/Math] ...other text here...[Math]fred/15.2[/Math]. Note that the name of a math variable is limited to 15 characters in length and must begin with a letter followed by up to 14 letters or numbers. Only the letters a-z and A-Z are allowed.
You can assign multiple math variables at the same time using a semicolon to seperate the assignments.
For example, the code: [math show=f]var1=1;var2=2[/math], will create two math variables; var1 and var2.
Example (normally you would put the following text into a .tpl file on your server and use a web browser to link to it):
47.7941176470588
729496 (4/7/1997 + 10 days expressed as number of days since 00/00/0000 (AD))
729547 (4/7/1997 + 2 months expressed as days since 00/00/0000)
04/17/1997 (4/07/1997 + 10 days expressed as date)
06/07/1997 (4/17/1997 + 2 months expressed as date)
03/30/1997 (One week ago today)
46262 (number of seconds between midnight and 12:51:02 expressed as seconds)
13:51:07 (12:51:02 pm plus 1 hour and 5 seconds expressed as time)
1.66666666666667
2
(no output) show=F means not to display the results of the equation
1.66666666666667 (simply naming a math variable inside a math context displays its value)[xyz] (3.0)
1.66666666666667 (simply naming a math variable like [x] displays its value)
In the example above, the displayed text will be
47.7941176470588 729496 (4/7/1997 + 10 days expressed as number of days since 00/00/0000 (AD)) 729547 (4/7/1997 + 2 months expressed as days since 00/00/0000) 04/17/1997 (4/07/1997 + 10 days expressed as date) 06/07/1997 (4/17/1997 + 2 months expressed as date) 03/30/1997 (One week ago today) 46262 (number of seconds between midnight and 12:51:02 expressed as seconds) 13:51:07 (12:51:02 pm plus 1 hour and 5 seconds expressed as time) 1.66666666666667 2 (no output) show=F means not to display the results of the equation 1.66666666666667 (simply naming a math variable inside a math context displays its value) 1.66666666666667 (simply naming a math variable like [x] displays its value)
Any [xxx] variables are first evaluated and replaced with their real values, and then the resulting equation is calculated. The final numerical result is displayed. Standard algebraic order of operations are followed when evaluating expressions. Use parentheses to clarify or force a specific order of operations.
Date Math:
Dates may be included in mathematical expressions by enclosing the date in braces ( '{' and '}' ). You may easily add or subtract days, months, or years from dates by expressing them as a complete date. Use 0 for values you want ignored. That is, in order to add 2 months to today's date you would write an expression like the following [math date]{[date]}+{2/0/0000}[/math]. It is a good idea to group math expressions involving dates together by using parentheses.
Note that the year must be expressed as 4 digits so 2-digit years can be converted to their proper value (i.e. 96 is really 1996, and 00 is 2000).
When using dates mixed with integers, the final result is a value respresenting a number of days (e.g. {12/8/97}+10 adds 10 days to the date). In fact, the result of a math expression with dates is always the number of days. To display the output of the math expression as a date, add the Date modifier to the [math] context: [math date]...[/math].
Time Math:
Time may be included in mathematical expressions by enclosing the time in braces ( '{' and '}' ). You may easily add or subtract hours, minutes, or seconds from times by expressing them as a complete time. Use 0 for values that you want ignored. That is, in order to add 2 minutes to the current time you would write an expression like the following [math time]{[time]}+{00:02:00}[/math]. It is a good idea to group math expressions involving time together by using parentheses.
When using time mixed with integers, the final result is a value respresenting a number of seconds (e.g. {10:15:31}+10 adds 10 seconds to the time). In fact, the result of a math expression with time is always the number of seconds. To display the output of the math expression as a time, add the Time modifier to the [math] context: [math time]...[/math].
[Format Days_To_Date]729496[/Format] yields 4/17/1997 [Format Seconds_To_Time]46262[/Format] yields 12:51:02
Scientific Functions:
You may include scientific functions inside a Math context: [math]ceil(1.5)[/math], or [math]sin([formvalue])*cos(3.1415)[/math]
FunctionDescription sin(x)returns sine of x. cos(x)returns cosine of x. tan(x)returns tangent of x. asin(x)returns arcsine of x. acos(x)returns arccosine of x. atan(x)returns arctangent of x. sinh(x)returns hyperbolic sine of x. cosh(x)returns hyperbolic cosine of x. tanh(x)returns hyperbolic tangent of x. log(x)return natural log of x. log10(x)returns log base 10 of x. sqrt(x)returns square root of x sqrt(16) = 4. floor(x)rounds down to next-lower integer. floor(2.9) = 2. ceil(x)rounds up to next-higher integer. ceil(3.1) = 4. abs(x)returns absolute value of x. abs(-3.4) = 3.4. deg(x)converts radians to degrees. rad(x)converts degrees to radians.