1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
Tutorial
========
Below we provide links to tutorial examples intended for learning
the basics of slepc4py. For additional information, the reader
is referred to:
+ slepc4py :ref:`reference` (manual pages for all slepc4py classes and methods).
+ `SLEPc documentation`_.
+ `petsc4py documentation`_.
.. _SLEPc documentation: https://slepc.upv.es/release/documentation
.. _petsc4py documentation: https://petsc.org/release/petsc4py
Commented source of demo examples
---------------------------------
+ To get started, we recommend having a look at the source code of example
``demo/ex1.py``, that has comments inserted inline. It is also `available
online here <../slepc4py/demo/ex1.html>`__. This example solves a standard
symmetric eigenvalue problem.
* Demo examples for other problems, including linear and nonlinear
eigenvalue problems and singular value problems, are available in
the section :ref:`demos`.
|