Java cos cosd(double x)

Here you can find the source of cosd(double x)

Description

Cos() in degres

License

Open Source License

Declaration

public static final double cosd(double x) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    /** Cos() in degres */
    public static final double cosd(double x) {
        return Math.cos(x * (Math.PI / 180.0));
    }//from   ww w.  j ava2s .c o m
}

Related

  1. cos(int f)
  2. cos(int i)
  3. cos(Integer a)
  4. cos(Long a)
  5. cosd(double degreeAngle)
  6. cosDeg(double degrees)
  7. cosf(float f)
  8. cosf(float value)
  9. cosineCoefficient(double[] hist1, double[] hist2)