Java Doc for Math.java in  » 6.0-JDK-Modules » j2me » java » lang » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules » j2me » java.lang 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.lang.Math

Math
final public strictfp class Math (Code)
The class Math contains methods for performing basic numeric operations.
version:
   12/17/01 (CLDC 1.1)
since:
   JDK1.0, CLDC 1.0


Field Summary
final public static  doubleE
     The double value that is closer than any other to e, the base of the natural logarithms.
final public static  doublePI
     The double value that is closer than any other to pi, the ratio of the circumference of a circle to its diameter.


Method Summary
public static  intabs(int a)
     Returns the absolute value of an int value. If the argument is not negative, the argument is returned. If the argument is negative, the negation of the argument is returned.

Note that if the argument is equal to the value of Integer.MIN_VALUE, the most negative representable int value, the result is that same value, which is negative.
Parameters:
  a - an int value.

public static  longabs(long a)
     Returns the absolute value of a long value. If the argument is not negative, the argument is returned. If the argument is negative, the negation of the argument is returned.

Note that if the argument is equal to the value of Long.MIN_VALUE, the most negative representable long value, the result is that same value, which is negative.
Parameters:
  a - a long value.

public static  floatabs(float a)
     Returns the absolute value of a float value. If the argument is not negative, the argument is returned. If the argument is negative, the negation of the argument is returned. Special cases:
  • If the argument is positive zero or negative zero, the result is positive zero.
  • If the argument is infinite, the result is positive infinity.
  • If the argument is NaN, the result is NaN.
In other words, the result is equal to the value of the expression:

Float.intBitsToFloat(0x7fffffff & Float.floatToIntBits(a))

Parameters:
  a - a float value.
public static  doubleabs(double a)
     Returns the absolute value of a double value. If the argument is not negative, the argument is returned. If the argument is negative, the negation of the argument is returned. Special cases:
  • If the argument is positive zero or negative zero, the result is positive zero.
  • If the argument is infinite, the result is positive infinity.
  • If the argument is NaN, the result is NaN.
In other words, the result is equal to the value of the expression:

Double.longBitsToDouble((Double.doubleToLongBits(a)<<1)>>>1)

Parameters:
  a - a double value.
native public static  doubleceil(double a)
     Returns the smallest (closest to negative infinity) double value that is not less than the argument and is equal to a mathematical integer.
native public static  doublecos(double a)
     Returns the trigonometric cosine of an angle.
native public static  doublefloor(double a)
     Returns the largest (closest to positive infinity) double value that is not greater than the argument and is equal to a mathematical integer.
public static  intmax(int a, int b)
     Returns the greater of two int values.
public static  longmax(long a, long b)
     Returns the greater of two long values.
public static  floatmax(float a, float b)
     Returns the greater of two float values.
public static  doublemax(double a, double b)
     Returns the greater of two double values.
public static  intmin(int a, int b)
     Returns the smaller of two int values.
public static  longmin(long a, long b)
     Returns the smaller of two long values.
public static  floatmin(float a, float b)
     Returns the smaller of two float values.
public static  doublemin(double a, double b)
     Returns the smaller of two double values.
native public static  doublesin(double a)
     Returns the trigonometric sine of an angle.
native public static  doublesqrt(double a)
     Returns the correctly rounded positive square root of a double value. Special cases:
  • If the argument is NaN or less than zero, then the result is NaN.
  • If the argument is positive infinity, then the result is positive infinity.
  • If the argument is positive zero or negative zero, then the result is the same as the argument.

Parameters:
  a - a double value.
native public static  doubletan(double a)
     Returns the trigonometric tangent of an angle.
public static  doubletoDegrees(double angrad)
     Converts an angle measured in radians to the equivalent angle measured in degrees.
public static  doubletoRadians(double angdeg)
     Converts an angle measured in degrees to the equivalent angle measured in radians.

Field Detail
E
final public static double E(Code)
The double value that is closer than any other to e, the base of the natural logarithms.
since:
   CLDC 1.1



PI
final public static double PI(Code)
The double value that is closer than any other to pi, the ratio of the circumference of a circle to its diameter.
since:
   CLDC 1.1





Method Detail
abs
public static int abs(int a)(Code)
Returns the absolute value of an int value. If the argument is not negative, the argument is returned. If the argument is negative, the negation of the argument is returned.

Note that if the argument is equal to the value of Integer.MIN_VALUE, the most negative representable int value, the result is that same value, which is negative.
Parameters:
  a - an int value. the absolute value of the argument.
See Also:   java.lang.Integer.MIN_VALUE




abs
public static long abs(long a)(Code)
Returns the absolute value of a long value. If the argument is not negative, the argument is returned. If the argument is negative, the negation of the argument is returned.

Note that if the argument is equal to the value of Long.MIN_VALUE, the most negative representable long value, the result is that same value, which is negative.
Parameters:
  a - a long value. the absolute value of the argument.
See Also:   java.lang.Long.MIN_VALUE




abs
public static float abs(float a)(Code)
Returns the absolute value of a float value. If the argument is not negative, the argument is returned. If the argument is negative, the negation of the argument is returned. Special cases:
  • If the argument is positive zero or negative zero, the result is positive zero.
  • If the argument is infinite, the result is positive infinity.
  • If the argument is NaN, the result is NaN.
In other words, the result is equal to the value of the expression:

Float.intBitsToFloat(0x7fffffff & Float.floatToIntBits(a))

Parameters:
  a - a float value. the absolute value of the argument.
since:
   CLDC 1.1



abs
public static double abs(double a)(Code)
Returns the absolute value of a double value. If the argument is not negative, the argument is returned. If the argument is negative, the negation of the argument is returned. Special cases:
  • If the argument is positive zero or negative zero, the result is positive zero.
  • If the argument is infinite, the result is positive infinity.
  • If the argument is NaN, the result is NaN.
In other words, the result is equal to the value of the expression:

Double.longBitsToDouble((Double.doubleToLongBits(a)<<1)>>>1)

Parameters:
  a - a double value. the absolute value of the argument.
since:
   CLDC 1.1



ceil
native public static double ceil(double a)(Code)
Returns the smallest (closest to negative infinity) double value that is not less than the argument and is equal to a mathematical integer. Special cases:
  • If the argument value is already equal to a mathematical integer, then the result is the same as the argument.
  • If the argument is NaN or an infinity or positive zero or negative zero, then the result is the same as the argument.
  • If the argument value is less than zero but greater than -1.0, then the result is negative zero.
Note that the value of Math.ceil(x) is exactly the value of -Math.floor(-x).
Parameters:
  a - a double value. the smallest (closest to negative infinity)double value that is not less than the argumentand is equal to a mathematical integer.
since:
   CLDC 1.1



cos
native public static double cos(double a)(Code)
Returns the trigonometric cosine of an angle. Special case:
  • If the argument is NaN or an infinity, then the result is NaN.

Parameters:
  a - an angle, in radians. the cosine of the argument.
since:
   CLDC 1.1



floor
native public static double floor(double a)(Code)
Returns the largest (closest to positive infinity) double value that is not greater than the argument and is equal to a mathematical integer. Special cases:
  • If the argument value is already equal to a mathematical integer, then the result is the same as the argument.
  • If the argument is NaN or an infinity or positive zero or negative zero, then the result is the same as the argument.

Parameters:
  a - a double value. the largest (closest to positive infinity)double value that is not greater than the argumentand is equal to a mathematical integer.
since:
   CLDC 1.1



max
public static int max(int a, int b)(Code)
Returns the greater of two int values. That is, the result is the argument closer to the value of Integer.MAX_VALUE. If the arguments have the same value, the result is that same value.
Parameters:
  a - an int value.
Parameters:
  b - an int value. the larger of a and b.
See Also:   java.lang.Long.MAX_VALUE



max
public static long max(long a, long b)(Code)
Returns the greater of two long values. That is, the result is the argument closer to the value of Long.MAX_VALUE. If the arguments have the same value, the result is that same value.
Parameters:
  a - a long value.
Parameters:
  b - a long value. the larger of a and b.
See Also:   java.lang.Long.MAX_VALUE



max
public static float max(float a, float b)(Code)
Returns the greater of two float values. That is, the result is the argument closer to positive infinity. If the arguments have the same value, the result is that same value. If either value is NaN, then the result is NaN. Unlike the the numerical comparison operators, this method considers negative zero to be strictly smaller than positive zero. If one argument is positive zero and the other negative zero, the result is positive zero.
Parameters:
  a - a float value.
Parameters:
  b - a float value. the larger of a and b.



max
public static double max(double a, double b)(Code)
Returns the greater of two double values. That is, the result is the argument closer to positive infinity. If the arguments have the same value, the result is that same value. If either value is NaN, then the result is NaN. Unlike the the numerical comparison operators, this method considers negative zero to be strictly smaller than positive zero. If one argument is positive zero and the other negative zero, the result is positive zero.
Parameters:
  a - a double value.
Parameters:
  b - a double value. the larger of a and b.



min
public static int min(int a, int b)(Code)
Returns the smaller of two int values. That is, the result the argument closer to the value of Integer.MIN_VALUE. If the arguments have the same value, the result is that same value.
Parameters:
  a - an int value.
Parameters:
  b - an int value. the smaller of a and b.
See Also:   java.lang.Long.MIN_VALUE



min
public static long min(long a, long b)(Code)
Returns the smaller of two long values. That is, the result is the argument closer to the value of Long.MIN_VALUE. If the arguments have the same value, the result is that same value.
Parameters:
  a - a long value.
Parameters:
  b - a long value. the smaller of a and b.
See Also:   java.lang.Long.MIN_VALUE



min
public static float min(float a, float b)(Code)
Returns the smaller of two float values. That is, the result is the value closer to negative infinity. If the arguments have the same value, the result is that same value. If either value is NaN, then the result is NaN. Unlike the the numerical comparison operators, this method considers negative zero to be strictly smaller than positive zero. If one argument is positive zero and the other is negative zero, the result is negative zero.
Parameters:
  a - a float value.
Parameters:
  b - a float value. the smaller of a and b.
since:
   CLDC 1.1



min
public static double min(double a, double b)(Code)
Returns the smaller of two double values. That is, the result is the value closer to negative infinity. If the arguments have the same value, the result is that same value. If either value is NaN, then the result is NaN. Unlike the the numerical comparison operators, this method considers negative zero to be strictly smaller than positive zero. If one argument is positive zero and the other is negative zero, the result is negative zero.
Parameters:
  a - a double value.
Parameters:
  b - a double value. the smaller of a and b.
since:
   CLDC 1.1



sin
native public static double sin(double a)(Code)
Returns the trigonometric sine of an angle. Special cases:
  • If the argument is NaN or an infinity, then the result is NaN.
  • If the argument is positive zero, then the result is positive zero; if the argument is negative zero, then the result is negative zero.

Parameters:
  a - an angle, in radians. the sine of the argument.
since:
   CLDC 1.1



sqrt
native public static double sqrt(double a)(Code)
Returns the correctly rounded positive square root of a double value. Special cases:
  • If the argument is NaN or less than zero, then the result is NaN.
  • If the argument is positive infinity, then the result is positive infinity.
  • If the argument is positive zero or negative zero, then the result is the same as the argument.

Parameters:
  a - a double value. the positive square root of a.If the argument is NaN or less than zero, the result is NaN.
since:
   CLDC 1.1



tan
native public static double tan(double a)(Code)
Returns the trigonometric tangent of an angle. Special cases:
  • If the argument is NaN or an infinity, then the result is NaN.
  • If the argument is positive zero, then the result is positive zero; if the argument is negative zero, then the result is negative zero

Parameters:
  a - an angle, in radians. the tangent of the argument.
since:
   CLDC 1.1



toDegrees
public static double toDegrees(double angrad)(Code)
Converts an angle measured in radians to the equivalent angle measured in degrees.
Parameters:
  angrad - an angle, in radians the measurement of the angle angradin degrees.
since:
   CLDC 1.1



toRadians
public static double toRadians(double angdeg)(Code)
Converts an angle measured in degrees to the equivalent angle measured in radians.
Parameters:
  angdeg - an angle, in degrees the measurement of the angle angdegin radians.
since:
   CLDC 1.1



Methods inherited from java.lang.Object
public boolean equals(Object obj)(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.