Template:Ceil: Difference between revisions

From Vigyanwiki
Template>Erik Baas
m (+nl:)
Template>Mxn
(+vi: (noinclude))
Line 34: Line 34:
[[fr:Modèle:Ceil]]
[[fr:Modèle:Ceil]]
[[nl:Sjabloon:Ceil]]
[[nl:Sjabloon:Ceil]]
[[vi:Tiêu bản:Ceil]]
</noinclude>
</noinclude>

Revision as of 05:27, 15 November 2006

Template:Template documentation Implements the mathematical ceil function, i.e. returns the input value if it’s an integer, otherwise returns the lowest integer which is still greater than the input value.

For positive numbers, it will truncate the displayed decimals. For negative numbers, the decimals will be dropped, but the integer part of the absolute value displayed is decremented. This is the mathematical definition of the IEEE rounding mode toward minus infinite.

Usage:
{{Ceil|value}}
Examples:
  • {{Ceil|3.9}} = 4.
  • {{Ceil|3.5}} = 4.
  • {{Ceil|3.1}} = 4.
  • {{Ceil|3.0}} = 3.
  • {{Ceil|1.0}} = 1.
  • {{Ceil|0.9}} = 1.
  • {{Ceil|0.5}} = 1.
  • {{Ceil|0.1}} = 1.
  • {{Ceil|0.0}} = 0.
  • {{Ceil|-0.1}} = 0.
  • {{Ceil|-0.5}} = 0.
  • {{Ceil|-0.9}} = 0.
  • {{Ceil|-1.0}} = -1.
  • {{Ceil|-3.0}} = -3.
  • {{Ceil|-3.2}} = -3.
  • {{Ceil|-3.5}} = -3.
  • {{Ceil|-3.9}} = -3.
See also: