Skip to content

Instantly share code, notes, and snippets.

@OpenGamma-Blog
Last active December 13, 2015 16:58
Show Gist options
  • Save OpenGamma-Blog/4943695 to your computer and use it in GitHub Desktop.
Save OpenGamma-Blog/4943695 to your computer and use it in GitHub Desktop.
MATLAB and OpenGamma 2
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