Previous sin() method is used to find out a trigonometric ratio sine of an angle in JAVA, measured in radians. sin() method exists in “Math” library of JAVA programming language.
Category: Java.lang.Math Class
Java – Find Absolute Value of Long – abs() Method with Examples
java.lang.Math.abs() method is used to find the absolute value of a long in Java for the given input (x – parameter) in Java. If the argument is not negative, the argument is returned. If the argument is negative, the negation of the argument is returned. Package abs() method exists in Math class of java.lang package….
Java – Find Absolute Value of Int – abs() Method with Examples
java.lang.Math.abs() method is used to find the absolute value of an integer in Java for the given input (x – parameter). If the argument is not negative, the argument is returned. If the argument is negative, the negation of the argument is returned. Package abs() method exists in Math class of java.lang package. Since: JDK1.0…
Java – Find Absolute Value of Float – abs() Method with Examples
java.lang.Math.abs() method is used to find the absolute value of a float value in Java for the given input (x – parameter). If the argument is not negative, the argument is returned. If the argument is negative, the negation of the argument is returned. abs() method exists in Math class of java.lang package. Since: JDK1.0…
Java – Find Arc Sine – asin() Method – Examples & Explanation
java.lang.Math.asin() method is used to find the sum of a double value in Java for the given input (x – parameter). The returned angle is in the range -pi/2 through pi/2. The computed result must be within 1 ulp of the exact result. Results must be semi-monotonic. asin() method exists in Math class of java.lang…
Java – Find Long Argument Incremented – incrementExact() Method with Examples
java.lang.Math.incrementExact() method is used to find the argument incremented by one of a long value for the given input (x – parameter) in Java. throwing an exception if the result overflows a long. incrementExact() method exists in Math class of java.lang package. Since: JDK1.8 Declaration of incrementExact() Method The declaration of incrementExact() method is:…
Java – Find Sum of Int – addExact() Method – Examples & Explanation
java.lang.Math.addExact() method is used to find the sum of a int value for the given input (x – parameter) in Java. throwing an exception if the result overflows an int. Package addExact() method exists in Math class of java.lang package. Since: JDK1.8 Declaration of addExact() Method The declaration of addExact() method is: public static…
Java – Find Hyperbolic Cosine – cosh() Method – Examples & Explanation
java.lang.Math.cosh() method is used to find the hyperbolic cosine of a double value in Java for the given input (x – parameter). The hyperbolic cosine of x is defined to be (e^x + e^-x)/2 where e is Euler’s number. The computed result must be within 2.5 ulps of the exact result. cosh() method exists in…
Java – Find Arc Cosine – acos() Method – Examples & Explanation
java.lang.Math.acos() method is used to find the arc cosine of a double value in Java for the given input (x – parameter). The returned angle is in the range 0.0 through PI (22/7). The computed result must be within 1 ulp of the exact result. Results must be semi-monotonic. acos() method exists in Math class…