• C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

Creating a surface plot in Matlab

Joined
2/3/13
Messages
245
Points
138
Hi Guys,

I need a little help in creating surface plot for my calculated implied volatility. My strike prices are from 81 to 120 and maturity from 0.1 to 2. How can I plot the volatilities against these? I will really appreciate your help.
 
Use the fuction meshgrid() to setup the grid, and then use the function mesh() to plot the values.
 
Back
Top