forked from lava/matplotlib-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add non-blocking mode of show and an example
- Loading branch information
hyhuang
authored and
Benno Evers
committed
Sep 12, 2017
1 parent
ba9343f
commit 4ea1200
Showing
2 changed files
with
67 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
#define _USE_MATH_DEFINES | ||
#include <cmath> | ||
#include "matplotlibcpp.h" | ||
|
||
namespace plt = matplotlibcpp; | ||
|
||
|
||
using namespace matplotlibcpp; | ||
using namespace std; | ||
|
||
int main() | ||
{ | ||
// Prepare data. | ||
int n = 5000; | ||
std::vector<double> x(n), y(n), z(n), w(n,2); | ||
for(int i=0; i<n; ++i) { | ||
x.at(i) = i*i; | ||
y.at(i) = sin(2*M_PI*i/360.0); | ||
z.at(i) = log(i); | ||
} | ||
|
||
// Plot line from given x and y data. Color is selected automatically. | ||
plt::subplot(2,2,1); | ||
plt::plot(x, y); | ||
|
||
// Plot a red dashed line from given x and y data. | ||
plt::subplot(2,2,2); | ||
plt::plot(x, w,"r--"); | ||
|
||
// Plot a line whose name will show up as "log(x)" in the legend. | ||
plt::subplot(2,2,3); | ||
plt::named_plot("log(x)", x, z); | ||
|
||
// Set x-axis to interval [0,1000000] | ||
plt::xlim(0, 1000*1000); | ||
|
||
// Add graph title | ||
plt::title("Sample figure"); | ||
// Enable legend. | ||
plt::legend(); | ||
|
||
plt::show(false); | ||
|
||
cout << "matplotlibcpp::show() is working in an non-blocking mode" << endl; | ||
getchar(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters