comparison liboctave/UMFPACK/UMFPACK/Include/umfpack_save_numeric.h @ 5164:57077d0ddc8e

[project @ 2005-02-25 19:55:24 by jwe]
author jwe
date Fri, 25 Feb 2005 19:55:28 +0000
parents
children
comparison
equal deleted inserted replaced
5163:9f3299378193 5164:57077d0ddc8e
1 /* ========================================================================== */
2 /* === umfpack_save_numeric ================================================= */
3 /* ========================================================================== */
4
5 /* -------------------------------------------------------------------------- */
6 /* UMFPACK Version 4.4, Copyright (c) 2005 by Timothy A. Davis. CISE Dept, */
7 /* Univ. of Florida. All Rights Reserved. See ../Doc/License for License. */
8 /* web: http://www.cise.ufl.edu/research/sparse/umfpack */
9 /* -------------------------------------------------------------------------- */
10
11 int umfpack_di_save_numeric
12 (
13 void *Numeric,
14 char *filename
15 ) ;
16
17 long umfpack_dl_save_numeric
18 (
19 void *Numeric,
20 char *filename
21 ) ;
22
23 int umfpack_zi_save_numeric
24 (
25 void *Numeric,
26 char *filename
27 ) ;
28
29 long umfpack_zl_save_numeric
30 (
31 void *Numeric,
32 char *filename
33 ) ;
34
35 /*
36 double int Syntax:
37
38 #include "umfpack.h"
39 int status ;
40 char *filename ;
41 void *Numeric ;
42 status = umfpack_di_save_numeric (Numeric, filename) ;
43
44 double long Syntax:
45
46 #include "umfpack.h"
47 long status ;
48 char *filename ;
49 void *Numeric ;
50 status = umfpack_dl_save_numeric (Numeric, filename) ;
51
52 complex int Syntax:
53
54 #include "umfpack.h"
55 int status ;
56 char *filename ;
57 void *Numeric ;
58 status = umfpack_zi_save_numeric (Numeric, filename) ;
59
60 complex long Syntax:
61
62 #include "umfpack.h"
63 long status ;
64 char *filename ;
65 void *Numeric ;
66 status = umfpack_zl_save_numeric (Numeric, filename) ;
67
68 Purpose:
69
70 Saves a Numeric object to a file, which can later be read by
71 umfpack_*_load_numeric. The Numeric object is not modified.
72
73 Returns:
74
75 UMFPACK_OK if successful.
76 UMFPACK_ERROR_invalid_Numeric_object if Numeric is not valid.
77 UMFPACK_ERROR_file_IO if an I/O error occurred.
78
79 Arguments:
80
81 void *Numeric ; Input argument, not modified.
82
83 Numeric must point to a valid Numeric object, computed by
84 umfpack_*_numeric or loaded by umfpack_*_load_numeric.
85
86 char *filename ; Input argument, not modified.
87
88 A string that contains the filename to which the Numeric
89 object is written.
90 */