How to call python matplotlib in a Qt C ++ project?

Python matplotlib gives very good numbers. How to call python matplotlib in a Qt C ++ project? I would like to put these numbers in the Qt dialogs, and the data is transmitted through memory.

+6
source share
1 answer

You can create a python script with matplotlib function calls and add them as callback functions in your C ++ code.

This guide explains how to do this.

I also recommend reading the Python.h documentation.

+4
source

Source: https://habr.com/ru/post/972064/


All Articles