/[ascend]/trunk/base/generic/solver/linutils.h
ViewVC logotype

Annotation of /trunk/base/generic/solver/linutils.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1014 - (hide annotations) (download) (as text)
Wed Jan 3 04:49:17 2007 UTC (16 years, 9 months ago) by johnpye
File MIME type: text/x-chdr
File size: 2330 byte(s)
Fixing @addtogroup comments
1 aw0a 1 /*
2     * lin_utils: Ascend Linear Algebra Utilities
3     * by Kirk Andre' Abbott
4     * Created: 12 March 1995
5     * Version: $Revision: 1.3 $
6     * Version control file: $RCSfile: linutils.h,v $
7     * Date last modified: $Date: 1997/07/18 12:14:34 $
8     * Last modified by: $Author: mthomas $
9     *
10     * This file is part of the SLV solver.
11     *
12     * Copyright (C) 1995 Kirk Andre' Abbott
13     *
14     * The SLV solver is free software; you can redistribute
15     * it and/or modify it under the terms of the GNU General Public License as
16     * published by the Free Software Foundation; either version 2 of the
17     * License, or (at your option) any later version.
18     *
19     * The SLV solver is distributed in hope that it will be
20     * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
21     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22     * General Public License for more details.
23     *
24     * You should have received a copy of the GNU General Public License along with
25     * the program; if not, write to the Free Software Foundation, Inc., 675
26     * Mass Ave, Cambridge, MA 02139 USA. Check the file named COPYING.
27     * COPYING is found in ../compiler.
28     */
29 jds 54
30     /** @file
31     * lin_utils: Ascend Linear Algebra Utilities.
32     * <pre>
33     * Requires: #include "utilities/ascConfig.h"
34     * #include "mtx.h"
35     * #include "linsol.h"
36     * #include "linsolqr.h"
37     * </pre>
38     * @todo Document functions in linutils.h.
39     */
40    
41 aw0a 1 #ifndef linutils_already_included
42     #define linutils_already_included
43    
44 johnpye 1014 /** @addtogroup linear
45     Linear solver routines
46     @{ */
47 johnpye 1013
48 johnpye 522 ASC_DLLSPEC(double ) linutils_A_1_norm(mtx_matrix_t mtx,
49 jds 54 mtx_region_t *reg);
50 aw0a 1
51 johnpye 522 ASC_DLLSPEC(double ) linutils_A_infinity_norm(mtx_matrix_t mtx,
52 jds 54 mtx_region_t *reg);
53 aw0a 1
54 johnpye 522 ASC_DLLSPEC(double ) linutils_A_Frobenius_norm(mtx_matrix_t mtx,
55 jds 54 mtx_region_t *reg);
56 aw0a 1
57 johnpye 522 ASC_DLLSPEC(double ) linutils_A_condqr_kaa(linsolqr_system_t lin_sys,
58 jds 54 mtx_matrix_t mtx,
59     mtx_region_t *reg);
60 aw0a 1
61 johnpye 522 ASC_DLLSPEC(double ) linutils_A_cond_kaa(linsol_system_t lin_sys,
62 jds 54 mtx_matrix_t mtx,
63     mtx_region_t *reg);
64 aw0a 1
65 johnpye 1013 /** @} */
66    
67 jds 54 #endif /* linutils_already_included */

john.pye@anu.edu.au
ViewVC Help
Powered by ViewVC 1.1.22