vote up 2 vote down star
2

My question is very similar in spirit to this question: What is the best plotting library for Python?

What is my best bet for plotting data in C? Am I better off forgoing a library and just generating data that I can feed directly into gnuplot?

My impetus for this question is being able to visualize DSP transformations while studying the excellent resources found in an earlier question of mine. So the focus is really just 2D plots, histograms, etc.; 3D isn't as important right now.

flag

67% accept rate

4 Answers

vote up 4 vote down check

I think you are on the right track with gnuplot. For what you want, it's very powerful and flexible.

However, you may want to consider writing to gnuplot directly from your application instead of creating data and feeding it. There is an ANSI C API to gnuplot available.

link|flag
vote up 0 vote down

libgd. But if you don't have a lot of data to plot, gnuplot is a good way to go, as others suggested.

link|flag
vote up 0 vote down

have you looked at AntiGrain? it's multiplatform

link|flag
vote up 1 vote down

On Mac OS X you may also feed your data directly into Plot which features Perl based scripting and a commandline interface for none interactive data processing:

http://plot.micw.eu

In terms of a Mac OS X C-ish plotting framework see: core-plot

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.