Java sin sin(Number x)

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

Description

sin

License

Apache License

Declaration

public static double sin(Number x) 

Method Source Code

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

public class Main {
    public static double sin(Number x) {
        return Math.sin(x.doubleValue());
    }/*from  w ww. ja  v a 2  s . co m*/
}

Related

  1. sin(float n)
  2. sin(int angle)
  3. sin(int angle)
  4. sin(int f)
  5. sin(int i)
  6. sin(Short a)
  7. sin5(float x)
  8. sin_core(double x)
  9. sin_v2(double x)