Tabnine Logo
MathLib.asin
Code IndexAdd Tabnine to your IDE (free)

How to use
asin
method
in
javolution.lang.MathLib

Best Java code snippets using javolution.lang.MathLib.asin (Showing top 4 results out of 315)

origin: javolution/javolution

/**
 * Returns the arc cosine of the specified value,
 * in the range of 0.0 through <i>pi</i>. 
 *
 * @param x the value whose arc cosine is to be returned.
 * @return the arc cosine in radians for the specified value.
 **/
public static double acos(double x) {
  return HALF_PI - MathLib.asin(x);
}
/**/
origin: org.javolution/javolution-core-java

/**
 * Returns the arc cosine of the specified value,
 * in the range of 0.0 through <i>pi</i>. 
 *
 * @param x the value whose arc cosine is to be returned.
 * @return the arc cosine in radians for the specified value.
 **/
public static double acos(double x) {
  return HALF_PI - MathLib.asin(x);
}
origin: apache/marmotta

/**
 * Returns the arc cosine of the specified value,
 * in the range of 0.0 through <i>pi</i>. 
 *
 * @param x the value whose arc cosine is to be returned.
 * @return the arc cosine in radians for the specified value.
 **/
public static double acos(double x) {
  return HALF_PI - MathLib.asin(x);
}
origin: org.apache.marmotta/marmotta-commons

/**
 * Returns the arc cosine of the specified value,
 * in the range of 0.0 through <i>pi</i>. 
 *
 * @param x the value whose arc cosine is to be returned.
 * @return the arc cosine in radians for the specified value.
 **/
public static double acos(double x) {
  return HALF_PI - MathLib.asin(x);
}
javolution.langMathLibasin

Javadoc

Returns the arc sine of the specified value, in the range of -pi/2 through pi/2.

Popular methods of MathLib

  • min
    Returns the smaller of two long values.
  • sqrt
    Returns the positive square root of the specified value.
  • abs
    Returns the absolute value of the specified long argument.
  • bitLength
    Returns the number of bits in the minimal two's-complement representation of the specified long, exc
  • exp
    Returns #E raised to the specified power.
  • floor
    Returns the largest (closest to positive infinity)double value that is not greater than the argument
  • log
    Returns the natural logarithm (base #E) of the specified value.
  • max
    Returns the greater of two long values.
  • pow
    Returns the value of the first argument raised to the power of the second argument.
  • round
    Returns the closest int to the specified argument.
  • toDoublePow10
    Returns the closest double representation of the specified long number multiplied by a power of ten.
  • toDoublePow2
    Returns the closest double representation of the specified long number multiplied by a power of two.
  • toDoublePow10,
  • toDoublePow2,
  • toLongPow10,
  • _atan,
  • _ieee754_exp,
  • _ieee754_log,
  • atan,
  • digitLength,
  • floorLog10

Popular in Java

  • Running tasks concurrently on multiple threads
  • setRequestProperty (URLConnection)
  • putExtra (Intent)
  • getExternalFilesDir (Context)
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • Path (java.nio.file)
  • Iterator (java.util)
    An iterator over a sequence of objects, such as a collection.If a collection has been changed since
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • JLabel (javax.swing)
  • JOptionPane (javax.swing)
  • Top plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now