GNU Octave  4.2.1
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
sparse-util.h
Go to the documentation of this file.
1 /*
2 
3 Copyright (C) 2005-2017 David Bateman
4 Copyright (C) 1998-2005 Andy Adler
5 
6 This file is part of Octave.
7 
8 Octave is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by the
10 Free Software Foundation; either version 3 of the License, or (at your
11 option) any later version.
12 
13 Octave is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
17 
18 You should have received a copy of the GNU General Public License
19 along with Octave; see the file COPYING. If not, see
20 <http://www.gnu.org/licenses/>.
21 
22 */
23 
24 #if ! defined (octave_sparse_util_h)
25 #define octave_sparse_util_h 1
26 
27 #include "octave-config.h"
28 
29 // The next two functions don't do anything unless CHOLMOD is available
30 
31 // FIXME: This overload is here due to API change in SuiteSparse (3.1 -> 3.2)
32 extern OCTAVE_API void
33 SparseCholError (int status, char *file, int line, char *message);
34 
35 extern OCTAVE_API void
36 SparseCholError (int status, const char *file, int line, const char *message);
37 
38 extern OCTAVE_API int
39 SparseCholPrint (const char *fmt, ...);
40 
41 extern OCTAVE_API bool
43  octave_idx_type nrows, octave_idx_type ncols,
44  octave_idx_type nnz);
45 
46 #endif
For example cd octave end example noindent changes the current working directory to file
Definition: dirfns.cc:120
OCTAVE_API void SparseCholError(int status, char *file, int line, char *message)
Definition: sparse-util.cc:61
void message(const char *name, const char *fmt,...)
Definition: error.cc:430
the sparsity preserving column transformation such that that defines the pivoting threshold can be given in which case it defines the c
Definition: lu.cc:138
OCTAVE_API bool sparse_indices_ok(octave_idx_type *r, octave_idx_type *c, octave_idx_type nrows, octave_idx_type ncols, octave_idx_type nnz)
Definition: sparse-util.cc:84
OCTAVE_API int SparseCholPrint(const char *fmt,...)
Definition: sparse-util.cc:73