/*
 * Created on 2007.03.26.
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
package gyak6.hu.u_szeged.inf.fgv;

/**
 * @author bekesi
 *
 * TODO To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
public class SinusHiperbolicus extends Fuggveny {

	/* (non-Javadoc)
	 * @see gyak6.hu.u_szeged.inf.fgv.Fuggveny#y(double)
	 */
/**
 * A sinushiperbolikus fggvny formulja 
 */	
	public double y(double x) 
	{
		return (Math.exp(x)+Math.exp(-x))/2.0;
	}
}
