Tagged Questions

5
votes
1answer
211 views

Best way to draw scatter plot with lots of data points in C++ using OpenGL

I'm writing a program in C++ that acquires 4 dimensional points data over a UDP socket and then plots the data in 6 separate 2D scatter plots. For example if we name the dimensions: A,B,C,D the six 2d ...
5
votes
9answers
9k views

Scatter Plots in C++

What is the best way to graph scatter plots in C++? Do you write data to a file and use another tool? Is there a library like matplotlib in Python?
0
votes
2answers
47 views

Use VTK to plot points of different colours

I would like to use Visualisation Toolkit to scatter plot points, each of which will have a different colour. I have used the advice given here to plot points in a gray colour, but am failing to ...
0
votes
2answers
241 views

How can I chart 3d scatter graphs in C++?

What is the best way to chart a 3D scatter graph in C++? Or maybe it's easier to use an external programs. Can you recommend my anything?