C++ matplotlib 的接口
我想知道是否有一个可以从 C++ 使用的 matplotlib 接口。 (也许类似于 gnuplot 的东西)
I was wondering if there's an interface to matplotlib that can be used from C++. (Perhaps something similar to what gnuplot has)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
基于这个SO问题,您可以使用字符串:
对于静态数据,这非常简单:
它变得有点棘手,但对于变量数据仍然可以,只需将其连接到字符串即可。
(请注意,我没有检查这个错误,所以里面可能有一些错误,但你明白了,是的,这是一个非常丑陋的解决方案)。
Based on this SO question, you can use strings:
For static data, it's really easy:
It gets a bit more tricky, but still possible with variable data, just concatenate it to a string.
(Please note that I didn't check this for bugs, so there may be some in there, but you get the idea, and yes, it's a very ugly solution).
这是老问题,但是有 C++ api 可以使用 Mathplot: matplotlib-cpp 从 2014 年开发
It is old question, but there is C++ api to use Mathplot: matplotlib-cpp developed from 2014