From Fedora Project Wiki

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


= Image testing =  
= Image testing =  
Line 5: Line 6:
== Fedora 20 Alpha TC5 ==
== 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 ==


= Tools/Libraries testing =
* Installed Fedora 20 Scientific TC5 i386 on bare metal and x86_64 in a VM
 
* Login works
== C programming ==
* Tried out a few applications - works fine.


Including use of math, gsl
== Fedora 20 Alpha ==


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


Use of libraries such as Bliz++ and others
== Fedora 20 Beta TC5 ==


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


Use of libraries
== Fedora 20 Beta ==


== Numpy & SciPy ==
* Installed Fedora 20 Scientific i386 in a VM
* Login works
* Tried out a few applications - works fine.


== SymPy ==  
== Fedora 20 TC3 ==


== IPython (including notebook) ==
* Installed Fedora 20 Scientific i386 on bare metal
* Login works
* Tried out a few applications - works fine.




== matplotlib ==
See below for some of the test scripts.


Please test the following with both Python 2 and Python 3.
--[[User:Amitksaha|Amitksaha]] ([[User talk:Amitksaha|talk]]) 12:06, 26 September 2013 (UTC)


*Basic plotting with the default backend using the <code>pylab</code> module:
= Tools/Libraries testing =
 
<pre>
# basic plotting with default backend
from pylab import plot, show
 
plot([1,2,3])
show()
 
</pre>
 
*Basic plotting with the default backend using the <code>maplotlib</code> package:
 
<pre>
# basic plotting using the matplotlib interface
import matplotlib.pyplot as plt
 
plt.plot([1,2,3])
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 ==
 
*Plotting with default terminal  (<code>qt</code>)
 
<pre>
$      gnuplot
 
        G N U P L O T
        Version 4.6 patchlevel 3    last modified 2013-04-12
        Build System: Linux x86_64
 
        Copyright (C) 1986-1993, 1998, 2004, 2007-2013
        Thomas Williams, Colin Kelley and many others
 
        gnuplot home:    http://www.gnuplot.info
        faq, bugs, etc:  type "help FAQ"
        immediate help:  type "help"  (plot window: hit 'h')
 
Terminal type set to 'qt'
gnuplot>  p sin(x)
</pre>


*Try other terminals (fig, latex)
Test scripts and data are available on [https://github.com/amitsaha/scientific_spin_tests GitHub].

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.