Mercurial > hg > octave-max
annotate liboctave/oct-sparse.h @ 14327:4d917a6a858b stable
doc: Use Octave coding conventions in @example blocks of docstrings.
* accumarray.m, accumdim.m, bar.m, base2dec.m, bincoeff.m, bitcmp.m, bitset.m,
celldisp.m, chop.m, clabel.m, cloglog.m, colon.m, compass.m, computer.m,
contour3.m, contourc.m, corr.m, cstrcat.m, ctime.m, cylinder.m, date.m,
dec2base.m, demo.m, dir.m, dlmwrite.m, expm.m, ezcontourf.m, ezcontour.m,
ezmeshc.m, ezmesh.m, ezplot.m, ezsurfc.m, ezsurf.m, feather.m, findobj.m,
flipdim.m, fplot.m, genvarname.m, getfield.m, hankel.m, hilb.m, hist.m,
idivide.m, index.m, int2str.m, interp1.m, is_leap_year.m, ismember.m,
isocolors.m, isonormals.m, isosurface.m, kurtosis.m, legendre.m, linkprop.m,
logit.m, logm.m, __makeinfo__.m, __marching_cube__.m, median.m, mkoctfile.m,
moment.m, mpoles.m, orderfields.m, pcg.m, pcr.m, plot3.m, plotmatrix.m,
polyaffine.m, polygcd.m, poly.m, polyout.m, print.m, qp.m, quadgk.m, qzhess.m,
randi.m, rat.m, refreshdata.m, residue.m, rose.m, rot90.m, saveas.m, saveobj.m,
shiftdim.m, skewness.m, spaugment.m, spdiags.m, sqp.m, stem.m, str2num.m,
strcat.m, strjust.m, strread.m, strsplit.m, structfun.m, subplot.m,
subsindex.m, substruct.m, surfl.m, surfnorm.m, svds.m, uimenu.m, union.m,
voronoi.m, warning_ids.m, wblpdf.m: Use Octave coding conventions in
@example blocks of docstrings.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Sat, 04 Feb 2012 22:12:50 -0800 |
parents | 72c96de7a403 |
children |
rev | line source |
---|---|
5512 | 1 /* |
2 | |
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
3 Copyright (C) 2005-2012 David Bateman |
5512 | 4 |
5 This file is part of Octave. | |
6 | |
7 Octave is free software; you can redistribute it and/or modify it | |
8 under the terms of the GNU General Public License as published by the | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
5512 | 11 |
12 Octave is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
5512 | 20 |
21 */ | |
22 | |
23 #if !defined (oct_sparse_h) | |
24 #define oct_sparse_h 1 | |
25 | |
7619 | 26 #if defined (HAVE_SUITESPARSE_AMD_H) |
27 #include <suitesparse/amd.h> | |
28 #elif defined (HAVE_UFSPARSE_AMD_H) | |
29 #include <ufsparse/amd.h> | |
30 #elif defined (HAVE_AMD_AMD_H) | |
31 #include <amd/amd.h> | |
32 #elif defined (HAVE_AMD_H) | |
33 #include <amd.h> | |
34 #endif | |
35 | |
6231 | 36 #if defined (HAVE_SUITESPARSE_UMFPACK_H) |
37 #include <suitesparse/umfpack.h> | |
6186 | 38 #elif defined (HAVE_UFSPARSE_UMFPACK_H) |
5512 | 39 #include <ufsparse/umfpack.h> |
40 #elif defined (HAVE_UMFPACK_UMFPACK_H) | |
41 #include <umfpack/umfpack.h> | |
42 #elif defined (HAVE_UMFPACK_H) | |
43 #include <umfpack.h> | |
44 #endif | |
45 | |
6231 | 46 #if defined (HAVE_SUITESPARSE_COLAMD_H) |
47 #include <suitesparse/colamd.h> | |
6186 | 48 #elif defined (HAVE_UFSPARSE_COLAMD_H) |
5512 | 49 #include <ufsparse/colamd.h> |
5610 | 50 #elif defined (HAVE_COLAMD_COLAMD_H) |
51 #include <colamd/colamd.h> | |
5512 | 52 #elif defined (HAVE_COLAMD_H) |
53 #include <colamd.h> | |
54 #endif | |
55 | |
6231 | 56 #if defined (HAVE_SUITESPARSE_CCOLAMD_H) |
57 #include <suitesparse/ccolamd.h> | |
6186 | 58 #elif defined (HAVE_UFSPARSE_CCOLAMD_H) |
5512 | 59 #include <ufsparse/ccolamd.h> |
5610 | 60 #elif defined (HAVE_CCOLAMD_CCOLAMD_H) |
61 #include <ccolamd/ccolamd.h> | |
5512 | 62 #elif defined (HAVE_CCOLAMD_H) |
63 #include <ccolamd.h> | |
64 #endif | |
65 | |
6231 | 66 #if defined (HAVE_SUITESPARSE_CHOLMOD_H) |
67 #include <suitesparse/cholmod.h> | |
6186 | 68 #elif defined (HAVE_UFSPARSE_CHOLMOD_H) |
5512 | 69 #include <ufsparse/cholmod.h> |
6236 | 70 #elif defined (HAVE_CHOLMOD_CHOLMOD_H) |
5610 | 71 #include <cholmod/cholmod.h> |
5512 | 72 #elif defined (HAVE_CHOLMOD_H) |
73 #include <cholmod.h> | |
74 #endif | |
75 | |
6231 | 76 #if defined (HAVE_SUITESPARSE_CS_H) |
77 #include <suitesparse/cs.h> | |
6186 | 78 #elif defined (HAVE_UFSPARSE_CS_H) |
5648 | 79 #include <ufsparse/cs.h> |
80 #elif defined (HAVE_CXSPARSE_CS_H) | |
81 #include <cxsparse/cs.h> | |
82 #elif defined (HAVE_CS_H) | |
83 #include <cs.h> | |
5610 | 84 #endif |
85 | |
6231 | 86 #if (defined (HAVE_SUITESPARSE_CHOLMOD_H) \ |
6186 | 87 || defined (HAVE_UFSPARSE_CHOLMOD_H) \ |
6236 | 88 || defined (HAVE_CHOLMOD_CHOLMOD_H) \ |
5512 | 89 || defined (HAVE_CHOLMOD_H)) |
90 #ifdef IDX_TYPE_LONG | |
91 #define CHOLMOD_NAME(name) cholmod_l_ ## name | |
92 #else | |
93 #define CHOLMOD_NAME(name) cholmod_ ## name | |
94 #endif | |
95 #endif | |
96 | |
97 #endif |