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

net.finmath.fouriermethod.models.CharacteristicFunctionModel Maven / Gradle / Ivy

Go to download

finmath lib is a Mathematical Finance Library in Java. It provides algorithms and methodologies related to mathematical finance.

There is a newer version: 6.0.19
Show newest version
/*
 * (c) Copyright Christian P. Fries, Germany. Contact: [email protected].
 *
 * Created on 24.03.2014
 */

package net.finmath.fouriermethod.models;

import net.finmath.fouriermethod.CharacteristicFunction;
import net.finmath.modelling.Model;

/**
 * Interface which has to be implemented by models providing the
 * characteristic functions of stochastic processes.
 *
 * @author Christian Fries
 * @version 1.0
 */
@FunctionalInterface
public interface CharacteristicFunctionModel extends Model {

	/**
	 * Returns the characteristic function of X(t), where X is this stochastic process.
	 *
	 * @param time The time at which the stochastic process is observed.
	 * @return The characteristic function of X(t).
	 */
	CharacteristicFunction apply(double time);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy