gnu plot with fortran
gnu plot with fortran
(OP)
hi, i have gfortran from 'fortran tools' which came with gnuplot. my doubt is if i make a exe file incorporating a call to gnuplot, will that work on a different pc (which doesnt have gnuplot??). the reason is i wish to make a exe file which is to be distributed across windows pc's, it should accept some coordinates from user and then plot the graph - is there a better way ?? thanks





RE: gnu plot with fortran
What you need is a library that you can compile into your program that would allow you to produce (static) plots or graphs in a format that can be open by a typically installed software in the other compupter...like a pdf or png or jpg kind of format.
There are libraries out there that work that way, like PLplot, DISLIN, etc.
RE: gnu plot with fortran
TTFN
I can do absolutely anything. I'm an expert!
FAQ731-376: Eng-Tips.com Forum Policies forum1529: Translation Assistance for Engineers
RE: gnu plot with fortran
RE: gnu plot with fortran
RE: gnu plot with fortran
RE: gnu plot with fortran
I don't think DISLIN is open source or free for all use; so, make sure you read their License and that your use of it does not violate it.
Other than that...right now is a very good time to start learning how to download and install program.
RE: gnu plot with fortran
RE: gnu plot with fortran
Again, if you do not want to have to deploy anything, you need to go with a linked-in kind of library, like PLPLOT, PSPLOT, PGPLOT, DISLIN, etc.
RE: gnu plot with fortran