All Downloads are FREE. Search and download functionalities are using the official Maven repository.

JSci.maths.analysis.Sine Maven / Gradle / Ivy

package JSci.maths.analysis;

/**
* The sine function.
* @version 1.1
* @author Mark Hale
*/
public class Sine extends RealFunction {
        private final double A, w, k;
        /**
        * Constructs a sine function of the form sin(x).
        */
        public Sine() {
		this(1.0, 1.0, 0.0);
        }
        /**
        * Constructs a sine function of the form A sin(wx+k).
        */
        public Sine(double A, double w, double k) {
		this.A = A;
		this.w = w;
		this.k = k;
        }
        public double map(double x) {
                return A*Math.sin(w*x+k);
        }
        public RealFunction differentiate() {
		return new Cosine(A*w, w, k);
        }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy