• 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!

Free software for plotting 3D graph

Lun

Joined
3/1/07
Messages
74
Points
18
I want to plot the vol surface, I have the data already, what I miss is the graphical presentation. Can Excel do it ? Is there any good freeware ?

Thanks !.
 
Excel can plot a 3d surface, can be annoying to set up though.

As for freeware, you could try Octave. (GNU project, similar in functionality to Matlab).
 
3D Plots

I personally prefer SciLab to Octave for free MatLab-like software. Though SciLab is very similar to MatLab, it does not try to be a MatLab clone, so some of the instructions are different.

Gnuplot produces some absolutely phenomenal plots, but I did not find learning it to be easy. Unfortunately, Gnuplot is very difficult to invoke programmatically, so one almost always has to save one's data in a file format gnuplot can understand and then create a file of gnuplot instructions to obtain the desired plot.
 
you can also use scatterplot3d library in R
<code> library(scatterplot3d)
attach(mtcars)
scatterplot3d(wt,disp,mpg, main="3D Scatterplot")</code>
<code>
</code>
In C++ you can use OpenGL although not that trivial to use at first.

Python has a bunch of plotting libraries.
 
Back
Top