Java asin asin(Number x)

Here you can find the source of asin(Number x)

Description

asin

License

Apache License

Declaration

public static double asin(Number x) 

Method Source Code

//package com.java2s;
// Licensed under the Apache License, Version 2.0 (the "License");

public class Main {
    public static double asin(Number x) {
        return Math.asin(x.doubleValue());
    }//from   w  ww  .  java 2s .c o m
}

Related

  1. asin(final double x)
  2. asin(float value)
  3. asin(float x)
  4. asin(int f)
  5. asin(Integer a)
  6. asin_core(double x)
  7. asinScaled(double value)