matlab最简单的代码matplotlib-cpp
欢迎使用matplotlib-cpp,它可能是最简单的C
++绘图库。
它的构建类似于Matlab和matplotlib使用的绘图API。
用法
完整的最小示例:
#
include
"
matplotlibcpp.h
"
namespace
plt
=
matplotlibcpp;
int
main
()
{
plt::plot
({
1
,
3
,
2
,
4
});
plt::show
();
}
g++
minimal.cpp
-std=c++11
-I/usr/include/python2.7
-lpython2.7
结果:
一个更全面的示例:
#
include
"
matplotlibcpp.h
"
#
include
<
cmath
>
namespace
plt
=
matplotlibcpp;
int
main
()
{
//
Prepare
data.
int
n
=
5000
;
std::vector<
double
>
x
(n),
y
(n),
z
(n),
w
(n,
2
);
for
(
int
2022-02-23 17:00:57
179KB
系统开源
1