FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [View Raw Code]   [Original HTTPS Page]

gnuplot-cpp/README.md at master · Ewenwan/gnuplot-cpp · GitHub

Latest commit

 

History

History
26 lines (18 loc) · 685 Bytes

File metadata and controls

26 lines (18 loc) · 685 Bytes

gnuplot-cpp

A trivial gnuplot interface for c++.

There are many libraries providing the same solution, such as gnuplot-iostream. gnuplot-cpp aims at being lightweight and super easy to use. It functions by piping data to a gnuplot subprocess.

Features

  • Header only
  • Lightweight (~50 lines of code)
  • Easy to use

Example usage

#include "gnuplot.h"

int main(){
    GnuplotPipe gp;
    gp.sendLine("plot [-pi/2:pi] cos(x),-(sin(x) > sin(x+1) ? sin(x) : sin(x+1))");
    return 0;
}

Result:


Back | FazBrowse Home | New Git URL