[Gnuplotfortran-discuss] gnuplotfortran on Sun
Status: Beta
Brought to you by:
madhusudansingh
From: Tomasz K. <to...@ec...> - 2005-05-22 19:08:04
|
I just downloaded and installed fortranposix/gnuplotfortran on Sun. Great program! Maybe you would be interested in following: -------------------------------------------------------------------- Test computer: > uname -a SunOS rho.ecn.purdue.edu 5.8 Generic_117350-11 sun4u sparc SUNW,Ultra-80 > f95 -V f95: Forte Developer 7 Fortran 95 7.0 Patch 111714-11 2004/10/14 > gcc -v gcc version 3.4.3 > gmake -v GNU Make 3.80 > gnuplot -V gnuplot 4.0 patchlevel 0 Test results: 1. fortranposix-0.1 required modifications: -change -shared to -G 2. gnuplotfortran-0.2.1 required modifications: -changed -shared to -G -shortened line 2249 in gnuplot_fortran95.f90 3. gnuplot_fortran95_testbench.f90 required modifications: -call to gnuplot_plot2d() had to be modified to include all arguments original line: status=gnuplot_plot2d(ptr_gctrl,numpoints,x,y1,'sin(x)',y2,'cos(x)',y3,'atan(x)',y4,'sqrt(x)') modified line: status=gnuplot_plot2d(ptr_gctrl,numpoints,x,y1,'sin(x)','y1',y2,'cos(x)','y2',y3,'atan(x)','y3',y4,'sqrt(x)','y4') not all tests finished correctly, but enough to get me started. ------------------------------------------------------------------- Thanks! Tomasz |