Free easy way to draw graphs and charts in C++?(在 C++ 中绘制图形和图表的免费简单方法?)
问题描述
我正在做一些探索性模拟,我想展示图表以比较运行时算法之间的性能.
I am doing a little exploring simulation and I want to show the graphs to compare the performance among the algorithms during run-time.
你想到了什么图书馆?如果我的导师很容易编译我的代码,我非常喜欢那些很小的代码.我检查了 gdchart 但它似乎太重了.我只想要一个简单的 x-y 类型的时间线图.
What library comes to your mind? I highly prefer those that come small as I'd love if it's easy for my instructor to compile my code. I've checked gdchart but it seems to be too heavy. I just want a simple x-y sort of timeline graph.
谷歌图表当然是不可能的,如果你读过这个 类似的问题.
Google chart is of course out of the question, in case you've read this similar question.
相关帖子 C++ 中的散点图.
推荐答案
我最喜欢的是 gnuplot.它非常广泛,因此对于您的需求来说可能有点过于复杂.它是跨平台的,并且有 一个 C++ API.
My favourite has always been gnuplot. It's very extensive, so it might be a bit too complex for your needs though. It is cross-platform and there is a C++ API.
这篇关于在 C++ 中绘制图形和图表的免费简单方法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 C++ 中绘制图形和图表的免费简单方法?
基础教程推荐
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 使用从字符串中提取的参数调用函数 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01