Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
"Note that I cannot accept GPL licensed libraries." That makes it harder. – dmckee Mar 24 '10 at 15:59
I know GPL-not-accepted is harder. But note than matplotlib itself is BSD licensed, and would satisfy my requirements. – Didier Trosset Mar 24 '10 at 16:03
2  
What platform? What form of output? – anon Mar 24 '10 at 16:15
Linux + Windows platforms, screen output (auto refreshing live data). – Didier Trosset Mar 25 '10 at 7:32

4 Answers

up vote 11 down vote accepted

You can try something like this:

#include "Python.h"

int main()
{
   Py_Initialize();
   PyRun_SimpleString("import pylab");
   PyRun_SimpleString("pylab.plot(range(5))");
   PyRun_SimpleString("pylab.show()");
   Py_Exit(0);
   return 0;
}

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

share|improve this answer
Great, this works. But I wanna do something more complex, with live data and ... live display. – Didier Trosset Mar 25 '10 at 8:30

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.

share|improve this answer
1  
Now he has two problems. – honk Mar 25 '10 at 2:16

probably solved by now, but I guess mathgl http://mathgl.sourceforge.net/ is a viable option for anyone dropping here with the same question.

share|improve this answer

I am also using win7-Python2.7, i compiled it with and executed happily.

g++ matplot.cxx -IC:\Python27\include\ -LC:\Python27\libs -lpython27
g++ matplot.cxx -IC:\Python27\include\ -LC:\Python27\ -lpython27
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.