Last active
December 13, 2015 16:58
-
-
Save OpenGamma-Blog/4943695 to your computer and use it in GitHub Desktop.
MATLAB and OpenGamma 2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.opengamma.externalanalytics.matlab; | |
import java.io.IOException; | |
import com.mathworks.mps.client.MATLABException; | |
public interface CustomMatlabModel { | |
public double MatlabBlackScholes(boolean isCall, double Price, double Strike, double Rate, double Time, double Volatility, double Yield) throws IOException, MATLABException; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment