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

net.finmath.montecarlo.conditionalexpectation.MonteCarloConditionalExpectation 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 13.08.2004
 */
package net.finmath.montecarlo.conditionalexpectation;

import net.finmath.stochastic.RandomVariableInterface;

/**
 * The interface which has to be implemented by a fixed conditional expectation operator,
 *  i.e., E( · | Z ) for a fixed Z.
 *
 * @author Christian Fries
 */
public interface MonteCarloConditionalExpectation {
	
    /**
     * Return the conditional expectation of a given random variable.
     * The definition of the filtration time is part of the object implementing this interface.
     * 
     * @param randomVariable Given random variable.
     * @return The conditional expectation of randomVariable.
     */
    RandomVariableInterface getConditionalExpectation(RandomVariableInterface randomVariable);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy