FLTK logo

Article #1468: Multiplot 0.5

FLTK matrix user chat room
(using Element browser app)   FLTK gitter user chat room   GitHub FLTK Project   FLTK News RSS Feed  
  FLTK Apps      FLTK Library      Forums      Links     Login 
 Home  |  Articles & FAQs  |  Bugs & Features  |  Documentation  |  Download  |  Screenshots  ]
 

Return to Articles | Show Comments | Submit Comment ]

Article #1468: Multiplot 0.5

Created at 01:32 Jun 09, 2016 by andre.krause

Multiplot is a simple to use scientific plotting tool. It is a single header library: just include multiplot.h and you are ready to go. Axes scale automatically to fit the plot (but can be set to different scaling behaviours)

Example: void main() {
        Multiplot m(10,10,600,300); // new plot window: x,y,w,h
        m.show();
        for(int x=0;x<300;x++)
        {
                m.plot(x, 0.1*x*sin(0.1*x));
                m.redraw();
                m.check();
        } }

Download | Home Page | Listing ]


Comments

Submit Comment ]
 
 

Comments are owned by the poster. All other content is copyright 1998-2024 by Bill Spitzak and others. This project is hosted by The FLTK Team. Please report site problems to 'erco@seriss.com'.