I've been using matplotlib in a Python project. It is great.
I have now to plot data in a C++ project. Is anyone aware of a plotting library in C or C++?
Note that I cannot accept GPL licensed libraries.
|
I've been using matplotlib in a Python project. It is great. I have now to plot data in a C++ project. Is anyone aware of a plotting library in C or C++? Note that I cannot accept GPL licensed libraries. |
|||||||||||
|
|
You can try something like this:
compile it with(I am using a Mac): g++ -I/Library/Frameworks/Python.framework/Versions/2.6/include/python2.6/ plot.cpp -lpython2.6 Although you need to figure out how to make your data accessible to matplotlib (try writing it to a file and reading it back). Hope that helps, Raj |
|||
|
|
ROOT provides substantial plotting support and is provided under the terms of the LGPL, which may or may not be acceptable to you. Note however, that this is rather more than just a plotting library. |
|||||
|
|
probably solved by now, but I guess mathgl http://mathgl.sourceforge.net/ is a viable option for anyone dropping here with the same question. |
|||
|
|
|
I am also using win7-Python2.7, i compiled it with and executed happily.
|
||||
|
|