Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
3d220cb1fd6b88e5a62f9948d67140cb39384453
/
.
/
third_party
/
matplotlib-cpp
/
examples
/
minimal.cpp
blob: fbe1e1cd1fb07dd087ca39ee7b00209c22ead9ea [
file
] [
log
] [
blame
]
Austin Schuh
6c8ec4c
2018-01-23 11:18:57 -0800
[
diff
] [
blame
]
1
#include
"../matplotlibcpp.h"
2
3
namespace
plt
=
matplotlibcpp
;
4
5
int
main
()
{
6
plt
::
plot
({
1
,
3
,
2
,
4
});
7
plt
::
show
();
8
}