CoronaSDK 2013.1143 | Released: 18 Jun 2013, 2:19am | What's New | Download Now
These docs are *very* out of date.
You will be redirected to the new docs in a few seconds.
If you are certain you want to see the old docs, click cancel.
Cancel | Continue to new docs
You will be redirected to the new docs in a few seconds.
If you are certain you want to see the old docs, click cancel.
Cancel | Continue to new docs
math.modf()
Description:
Return the integral and fractional parts of a number.
Note: For the modulus (remainder), use the modulo operator % instead.
Syntax:
math.modf (x)
Example:
print (math.modf(5)) ----> 5 0 print (math.modf(5.3)) ----> 5 0.3 print (math.modf(-5.3)) ----> -5 -0.3
Parameters:
x
A number.
Returns:
Two numbers, the integer part and the fractional parts of x.
Each part has the same sign as x.
Remarks:
Supported on operating systems and platforms for build numbers shown:
- Mac OS X:Corona SDK 1.0
- Windows:Corona SDK 2.0
- iOS:Corona SDK 1.0
- Android:Corona SDK 2.0