Math Class Methods : Math Functions « Development « Java Tutorial

Java Tutorial
1. Language
2. Data Type
3. Operators
4. Statement Control
5. Class Definition
6. Development
7. Reflection
8. Regular Expressions
9. Collections
10. Thread
11. File
12. Generics
13. I18N
14. Swing
15. Swing Event
16. 2D Graphics
17. SWT
18. SWT 2D Graphics
19. Network
20. Database
21. JSP
22. JSTL
23. Servlet
24. Web Services SOA
25. Email
26. J2ME
27. J2EE Application
28. XML
29. Design Pattern
30. Log
31. Security
32. Apache Common
Java
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Tutorial » Development » Math Functions 
6. 13. 1. Math Class Methods
FunctionDescription
IEEEremainder(double, double)Returns the remainder of f1 divided by f2 as defined by IEEE 754
abs(int a)Returns the absolute integer value of a
abs(long a)Returns the absolute long value of a
abs(float a)Returns the absolute float value of a
abs(double a)Returns the absolute double value of a
acos(double a)Returns the arc cosine of a, in the range of 0.0 through pi
asin(double a)Returns the arc sine of a, in the range of -pi/2 through pi/2
atan(double a)Returns the arc tangent of a, in the range of -pi/2 through pi/2
atan2(double a, double b)Converts rectangular coordinates (a, b) to polar (r, theta)
ceil(double a)Returns the "ceiling," or smallest whole number greater than or equal to a
cos(double)Returns the trigonometric cosine of an angle
exp(double a)Returns the exponential number e(2.718...) raised to the power of a
floor(double a)Returns the "floor," or largest whole number less than or equal to a
log(double a)Returns the natural logarithm (base e) of a
max(int a, int b)Takes two int values, a and b, and returns the greater of the two
max(long a, long b)Takes two long values, a and b, and returns the greater of the two
max(float a, float b)Takes two float values, a and b, and returns the greater of the two
max(double a, double b)Takes two double values, a and b, and returns the greater of the two
min(int a, int b)Takes two integer values, a and b, and returns the smaller of the two
min(long a, long b)Takes two long values, a and b, and returns the smaller of the two
min(float a, float b)Takes two float values, a and b, and returns the smaller of the two
min(double a, double b)Takes two double values, a and b, and returns the smaller of the two
pow(double a, double b)Returns the number a raised to the power of b
random()Generates a random number between 0.0 and 1.0
rint(double)Returns the closest integer to the argument, but as a floating-point number
round(float)Rounds off a float value by first adding 0.5 to it and then returning the largest integer that is less than or equal to this new value
round(double)Rounds off a double value by first adding 0.5 to it and then returning the largest integer that is less than or equal to this new value
sin(double)Returns the trigonometric sine of an angle
sqrt(double)Returns the square root of a
tan(double)Returns the trigonometric tangent of an angle
toDegrees(double)Translates radians to degrees
toRadians(double)Translates degrees to radians


6. 13. Math Functions
6. 13. 1. Math Class Methods
6. 13. 2. Use math functions
6. 13. 3. Testing the Math class methods
6. 13. 4. Floating Point Number Enhancements in JDK 6
6. 13. 5. Math.scalb
6. 13. 6. Math.getExponent
6. 13. 7. Math.nextAfter
6. 13. 8. Math.nextUp
6. 13. 9. Math.copySign
6. 13. 10. Demonstrate toDegrees() and toRadians().
w___w_w__.___jav___a_2_s__.c___o__m__ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.