How can use a matlab's dll of a funtion (with some parameter ) in vc++6.0v ?

function x = IV(RateSpec,StockSpec,Settlement,Maturity,OptSpec,Strike,OptionPrice)
x= impvbybls(RateSpec, StockSpec, Settlement, Maturity, OptSpec,
Strike, OptionPrice);
end

 Accepted Answer

Hi Sandeep,
do you have the compiler? You will need it to generate a DLL. Open deploytool, select "C-shared library target", add IV and compile. Take a look at the examples in the doc how to call the generated DLL.
Titus

More Answers (0)

Categories

Find more on MATLAB Compiler SDK in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!