Skip to content Skip to sidebar Skip to footer

Embedding Matplotlib In C

I have a double pointer in C, and I want to plot it with matplotlib from C. I'm not understanding how to do that with the Python/C API. Could someone give me a simple example? A si

Solution 1:

You can use Cython to call C code from python scripts, if you are willing to write a python master script that calls your c code and deals with the plotting.


Post a Comment for "Embedding Matplotlib In C"