Subversion Repositories slepc-dev

Rev

Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2428 jroman 1
classdef Slepc < handle
2
%
3
%   SLEPc MATLAB Interface Help
4
%
5
%   SlepcInitialize({'-option1','value1','-option2'});
6
%   SlepcFinalize;
7
%
8
%   See also: help Petsc
9
%
10
%   Each of the following have their own help
2603 eromero 11
%      SlepcEPS    - Eigenvalue solver class
12
%      SlepcST     - Spectral transformation class
13
%      SlepcSVD    - Singular value solver class
14
%      SlepcQEP    - Quadratic eigenvalue solver class
15
 
16
%  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
17
%  SLEPc - Scalable Library for Eigenvalue Problem Computations
18
%  Copyright (c) 2002-2011, Universitat Politecnica de Valencia, Spain
2428 jroman 19
%
2603 eromero 20
%  This file is part of SLEPc.
21
%    
22
%  SLEPc is free software: you can redistribute it and/or modify it under  the
23
%  terms of version 3 of the GNU Lesser General Public License as published by
24
%  the Free Software Foundation.
25
%
26
%  SLEPc  is  distributed in the hope that it will be useful, but WITHOUT  ANY
27
%  WARRANTY;  without even the implied warranty of MERCHANTABILITY or  FITNESS
28
%  FOR  A  PARTICULAR PURPOSE. See the GNU Lesser General Public  License  for
29
%  more details.
30
%
31
%  You  should have received a copy of the GNU Lesser General  Public  License
32
%  along with SLEPc. If not, see <http://www.gnu.org/licenses/>.
33
%  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
34
 
2428 jroman 35
  properties (Constant)
36
  end
37
end
38
 
39