Java sin sin(double... v)

Here you can find the source of sin(double... v)

Description

sin

License

Open Source License

Declaration

public static double[] sin(double... v) 

Method Source Code

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

public class Main {
    public static double[] sin(double... v) {
        double[] r = new double[v.length];
        for (int i = 0; i < v.length; i++)
            r[i] = Math.sin(v[i]);
        return r;
    }//ww  w . j ava 2  s  .c om
}

Related

  1. sin(double a)
  2. sin(double anAngle)
  3. sin(double d)
  4. sin(double radians)
  5. sin(final double value)
  6. sin(final float angle)
  7. sin(float angle)
  8. sin(float angle)