Java cos cosd(double degreeAngle)

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

Description

cosd

License

Open Source License

Declaration

public static double cosd(double degreeAngle) 

Method Source Code

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

public class Main {
    public static double cosd(double degreeAngle) {
        return Math.cos(Math.toRadians(degreeAngle));
    }//ww w.  ja  va2  s. c o m
}

Related

  1. cos(int angle)
  2. cos(int f)
  3. cos(int i)
  4. cos(Integer a)
  5. cos(Long a)
  6. cosd(double x)
  7. cosDeg(double degrees)
  8. cosf(float f)
  9. cosf(float value)