From Fedora Project Wiki

No edit summary
No edit summary
(10 intermediate revisions by the same user not shown)
Line 1: Line 1:
(Refer: [[Scientific_Spin]])
(Refer: [[Scientific_Spin]])


== C programming ==


Including use of math, gsl
= Image testing =


== C++ programming ==  
== Fedora 20 Alpha TC5 ==


Use of libraries such as Bliz++ and others
* Installed Fedora 20 Scientific TC5 x86-64 bit on bare metal
* Login works
* Tried out a few applications - works fine.


== Java programming ==
== Fedora 20 Alpha RC3 ==


Use of libraries
* Installed Fedora 20 Scientific TC5 i386 on bare metal and x86_64 in a VM
* Login works
* Tried out a few applications - works fine.


== Numpy & SciPy ==
== Fedora 20 Alpha ==


== SymPy ==
* Installed Fedora 20 Scientific Alpha i386 on bare metal and x86_64 in a VM
* Login works
* Tried out a few applications - works fine.


== IPython (including notebook) ==
== Fedora 20 Beta TC5 ==


* Installed Fedora 20 Scientific x86_64 in a VM
* Login works
* Tried out a few applications - works fine.


== matplotlib ==
== Fedora 20 Beta ==


Please test the following with both Python 2 and Python 3.
* Installed Fedora 20 Scientific i386 in a VM
* Login works
* Tried out a few applications - works fine.


*Basic plotting with the default backend using the <code>pylab</code> module:
== Fedora 20 TC3 ==


<pre>
* Installed Fedora 20 Scientific i386 on bare metal
# basic plotting with default backend
* Login works
from pylab import plot, show
* Tried out a few applications - works fine.


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


</pre>
See below for some of the test scripts.


*Basic plotting with the default backend using the <code>maplotlib</code> package:
--[[User:Amitksaha|Amitksaha]] ([[User talk:Amitksaha|talk]]) 12:06, 26 September 2013 (UTC)


<pre>
= Tools/Libraries testing =
# basic plotting using the matplotlib interface
import matplotlib.pyplot as plt


plt.plot([1,2,3])
Test scripts and data are available on [https://github.com/amitsaha/scientific_spin_tests GitHub].
plt.show()
</pre>
 
The default backend is <code>Qt4Agg</code>. The next scripts will test thee<code>TkAgg</code> backend.
 
*Basic plotting with the <code>TkAgg</code> backend using the <code>pylab</code> module:
 
<pre>
# basic plotting with default backend
import matplotlib
matplotlib.use('TkAgg')
 
from pylab import plot, show
 
plot([1,2,3])
show()
</pre>
 
 
*Basic plotting with the <code>TkAgg</code> backend using the <code>maplotlib</code> package:
 
<pre>
# basic plotting using the matplotlib interface
import matplotlib
matplotlib.use('tkagg')
 
import matplotlib.pyplot as plt
plt.plot([1,2,3])
plt.show()
</pre>
 
 
== gnuplot ==

Revision as of 21:42, 28 November 2013

(Refer: Scientific_Spin)


Image testing

Fedora 20 Alpha TC5

  • Installed Fedora 20 Scientific TC5 x86-64 bit on bare metal
  • Login works
  • Tried out a few applications - works fine.

Fedora 20 Alpha RC3

  • Installed Fedora 20 Scientific TC5 i386 on bare metal and x86_64 in a VM
  • Login works
  • Tried out a few applications - works fine.

Fedora 20 Alpha

  • Installed Fedora 20 Scientific Alpha i386 on bare metal and x86_64 in a VM
  • Login works
  • Tried out a few applications - works fine.

Fedora 20 Beta TC5

  • Installed Fedora 20 Scientific x86_64 in a VM
  • Login works
  • Tried out a few applications - works fine.

Fedora 20 Beta

  • Installed Fedora 20 Scientific i386 in a VM
  • Login works
  • Tried out a few applications - works fine.

Fedora 20 TC3

  • Installed Fedora 20 Scientific i386 on bare metal
  • Login works
  • Tried out a few applications - works fine.


See below for some of the test scripts.

--Amitksaha (talk) 12:06, 26 September 2013 (UTC)

Tools/Libraries testing

Test scripts and data are available on GitHub.