7017
|
1 ## Copyright (C) 1993, 1998, 1999, 2000, 2003, 2005, 2006, 2007 |
|
2 ## A. Scottedward Hodel |
3427
|
3 ## |
|
4 ## This file is part of Octave. |
|
5 ## |
|
6 ## Octave is free software; you can redistribute it and/or modify it |
7016
|
7 ## under the terms of the GNU General Public License as published by |
|
8 ## the Free Software Foundation; either version 3 of the License, or (at |
|
9 ## your option) any later version. |
3427
|
10 ## |
7016
|
11 ## Octave is distributed in the hope that it will be useful, but |
|
12 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
14 ## General Public License for more details. |
3427
|
15 ## |
|
16 ## You should have received a copy of the GNU General Public License |
7016
|
17 ## along with Octave; see the file COPYING. If not, see |
|
18 ## <http://www.gnu.org/licenses/>. |
3211
|
19 |
3459
|
20 ## -*- texinfo -*- |
|
21 ## @deftypefn {Function File} {[@var{u}, @var{ucols}] =} krylovb (@var{a}, @var{v}, @var{k}, @var{eps1}, @var{pflg}) |
|
22 ## See @code{krylov}. |
|
23 ## @end deftypefn |
3211
|
24 |
3427
|
25 function [Uret, Ucols] = krylovb (A, V, k, eps1, pflg) |
|
26 |
|
27 switch (nargin) |
|
28 case (3) |
|
29 [Uret, H, Ucols] = krylov (A, V, k); |
|
30 case (4) |
|
31 [Uret, H, Ucols] = krylov (A, V, k, eps1); |
|
32 case (5) |
|
33 [Uret, H, Ucols] = krylov (A, V, k, eps1, pflg); |
|
34 otherwise |
6046
|
35 print_usage (); |
3240
|
36 endswitch |
3211
|
37 |
|
38 endfunction |