Difference between revisions of "Template:Max"
Jump to navigation
Jump to search
imported>Verdy p m |
imported>Verdy p m |
||
| Line 1: | Line 1: | ||
<includeonly>{{#if:{{{1|}}}|{{#expr:{{#if:{{{2|}}}|{{#if:{{{3|}}}|{{#ifexpr:({{{1}}})>({{{2}}})|{{#ifexpr:({{{1}}})>({{{3}}})|{{{1}}}|{{{3}}}}}|{{#ifexpr:({{{2}}})>({{{3}}})|{{{2}}}|{{{3}}}}}}}|{{#ifexpr:({{{1}}})>({{{2}}})|{{{1}}}|{{{2}}}}}}}|{{{1}}}}}}}|}}</includeonly><noinclude>{{Template documentation}} | <includeonly>{{#if:{{{1|}}}|{{#expr:{{#if:{{{2|}}}|{{#if:{{{3|}}}|{{#ifexpr:({{{1}}})>({{{2}}})|{{#ifexpr:({{{1}}})>({{{3}}})|{{{1}}}|{{{3}}}}}|{{#ifexpr:({{{2}}})>({{{3}}})|{{{2}}}|{{{3}}}}}}}|{{#ifexpr:({{{1}}})>({{{2}}})|{{{1}}}|{{{2}}}}}}}|{{{1}}}}}}}|}}</includeonly><noinclude>{{Template documentation}} | ||
| − | Evaluates and returns the maximum of a list of numeric | + | Evaluates and returns the maximum of a list of numeric values (with up to 3 parameters). The parameters can be numeric expressions that will be evaluated. Empty or missing parameters are ignored. |
| + | |||
; Syntax<nowiki>:</nowiki> | ; Syntax<nowiki>:</nowiki> | ||
| + | : <tt><nowiki>{{max|</nowiki></tt>''[value1]''<tt><nowiki>|</nowiki></tt>''[value2]''<tt><nowiki>|</nowiki></tt>''[value3]''<tt><nowiki>}}</nowiki></tt> | ||
| + | |||
; Examples<nowiki>:</nowiki> | ; Examples<nowiki>:</nowiki> | ||
: <tt><nowiki>{{max}}</nowiki></tt> = "{{max}}". | : <tt><nowiki>{{max}}</nowiki></tt> = "{{max}}". | ||
| Line 12: | Line 15: | ||
: <tt><nowiki>{{max|40*41|300+30}}</nowiki></tt> = "{{max|40*41|300+30}}". | : <tt><nowiki>{{max|40*41|300+30}}</nowiki></tt> = "{{max|40*41|300+30}}". | ||
: <tt><nowiki>{{max|100+10|300+30|200+20}}</nowiki></tt> = "{{max|100+10|300+30|200+20}}". | : <tt><nowiki>{{max|100+10|300+30|200+20}}</nowiki></tt> = "{{max|100+10|300+30|200+20}}". | ||
| + | |||
; See also<nowiki>:</nowiki> | ; See also<nowiki>:</nowiki> | ||
* [[Template:Min]] | * [[Template:Min]] | ||
| + | |||
[[Category:Templates using ParserFunctions|Max]] | [[Category:Templates using ParserFunctions|Max]] | ||
[[Category:Mathematical templates|Max]] | [[Category:Mathematical templates|Max]] | ||
</noinclude> | </noinclude> | ||
Revision as of 22:08, 24 April 2006
Template:Template documentation Evaluates and returns the maximum of a list of numeric values (with up to 3 parameters). The parameters can be numeric expressions that will be evaluated. Empty or missing parameters are ignored.
- Syntax:
- {{max|[value1]|[value2]|[value3]}}
- Examples:
- {{max}} = "".
- {{max|}} = "".
- {{max|-7}} = "-7".
- {{max|-7|}} = "-7".
- {{max|-7|5}} = "5".
- {{max|-7|5|}} = "5".
- {{max|-7|5|8}} = "8".
- {{max|40*41|300+30}} = "1640".
- {{max|100+10|300+30|200+20}} = "330".
- See also: