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

net.finmath.fouriermethod.models.ProcessCharacteristicFunctionInterface 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. All rights reserved. Contact: [email protected].
 *
 * Created on 24.03.2014
 */

package net.finmath.fouriermethod.models;

import net.finmath.fouriermethod.CharacteristicFunctionInterface;

/**
 * Interface which has to be implemented by models providing the
 * characteristic functions of stochastic processes.
 * 
 * @author Christian Fries
 */
public interface ProcessCharacteristicFunctionInterface {

	/**
	 * 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).
	 */
	CharacteristicFunctionInterface apply(double time);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy