From Fedora Project Wiki

Revision as of 06:35, 5 September 2013 by Amitksaha (talk | contribs) (New page for "testing" the software shipped with Fedora scientific)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

(Refer: Scientific_Spin)

C programming

Including use of math, gsl

C++ programming

Use of libraries such as Bliz++ and others

Java programming

Use of libraries


matplotlib

Please test the following with both Python 2 and Python 3.

  • Basic plotting with the default backend using the pylab module:
# basic plotting with default backend
from pylab import plot, show

plot([1,2,3])
show()

  • Basic plotting with the default backend using the maplotlib package:
# basic plotting using the matplotlib interface
import matplotlib.pyplot as plt

plt.plot([1,2,3])
plt.show()


gnuplot