1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
|
<?xml version="1.0"?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
<!ENTITY igraph "igraph">
<!ENTITY version "@IGRAPH_VERSION@">
<!ENTITY mdash "—">
<!ENTITY aacute "á">
<!ENTITY ccaron "č">
<!ENTITY uuml "ü">
<!ENTITY % local.common.attrib "xmlns:xi CDATA #FIXED
'http://www.w3.org/2001/XInclude'" >
]>
<book id="index" xmlns:xi="http://www.w3.org/2001/XInclude">
<bookinfo>
<title>&igraph; Reference Manual</title>
<releaseinfo>&version;</releaseinfo>
<authorgroup>
<author><firstname>Gábor</firstname><surname>Csárdi</surname>
<affiliation>
<orgname>Department of Statistics, Harvard University</orgname>
<address>1 Oxford street, Cambridge, MA, 02138 USA</address>
</affiliation>
</author>
<author><firstname>Tamás</firstname><surname>Nepusz</surname>
<affiliation>
<orgname>Department of Biological Physics, Eötvös Loránd University</orgname>
<address>1/a Pázmány Péter sétány, 1117 Budapest, Hungary</address>
</affiliation>
</author>
<author><firstname>Vincent</firstname><surname>Traag</surname>
<affiliation>
<orgname>Centre for Science and Technology Studies, Leiden University</orgname>
<address>Room B5.31, Kolffpad 1, 2333 BN Leiden, Netherlands</address>
</affiliation>
</author>
<author><firstname>Szabolcs</firstname><surname>Horvát</surname>
<affiliation>
<orgname>Center for Systems Biology Dresden, Max Planck Institute for Cell Biology and Genetics</orgname>
<address>Pfotenhauerstr. 108, 01307 Dresden, Germany</address>
</affiliation>
</author>
<author><firstname>Fabio</firstname><surname>Zanini</surname>
<affiliation>
<orgname>Lowy Cancer Research Centre, University of New South Wales</orgname>
<address>Room 211, Botany and High St, Kensington, NSW, 2033, Australia</address>
</affiliation>
</author>
</authorgroup>
<legalnotice>
<para>This manual is for &igraph;, version &version;.</para>
<para>
Copyright (C) 2005-2019 Gábor Csárdi and Tamás Nepusz.
Copyright (C) 2020-2021 igraph development team.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.2
or any later version published by the Free Software Foundation;
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
Texts. A copy of the license is included in the section entitled
<quote>GNU Free Documentation License</quote>.
</para>
</legalnotice>
</bookinfo>
<xi:include href="introduction.xml"/>
<xi:include href="installation.xml"/>
<xi:include href="tutorial.xml"/>
<xi:include href="basicigraph.xml"/>
<xi:include href="error.xml"/>
<xi:include href="memory.xml" />
<chapter id="igraph-Data-structures">
<title>Data structure library: vector, matrix, other data types</title>
<xi:include href="pmt.xml"/>
<xi:include href="vector.xml"/>
<xi:include href="matrix.xml"/>
<xi:include href="sparsematrix.xml"/>
<xi:include href="sparsemat.xml"/>
<xi:include href="stack.xml"/>
<xi:include href="dqueue.xml"/>
<xi:include href="heap.xml"/>
<xi:include href="strvector.xml"/>
<xi:include href="adjlist.xml"/>
<xi:include href="psumtree.xml"/>
</chapter>
<xi:include href="random.xml"/>
<xi:include href="generators.xml"/>
<xi:include href="spatialgames.xml"/>
<xi:include href="iterators.xml"/>
<xi:include href="attributes.xml"/>
<xi:include href="structural.xml"/>
<xi:include href="cycles.xml"/>
<xi:include href="visitors.xml"/>
<xi:include href="cliques.xml"/>
<xi:include href="isomorphism.xml"/>
<xi:include href="coloring.xml"/>
<xi:include href="motifs.xml"/>
<xi:include href="layout.xml"/>
<xi:include href="foreign.xml"/>
<xi:include href="flows.xml"/>
<xi:include href="separators.xml"/>
<xi:include href="community.xml"/>
<xi:include href="graphlets.xml"/>
<xi:include href="hrg.xml"/>
<xi:include href="scg.xml"/>
<xi:include href="embedding.xml"/>
<xi:include href="operators.xml"/>
<xi:include href="arpack.xml"/>
<xi:include href="bipartite.xml"/>
<chapter id="igraph-Advanced">
<title>Advanced igraph programming</title>
<xi:include href="threading.xml" />
<xi:include href="progress.xml" />
<xi:include href="status.xml" />
</chapter>
<xi:include href="nongraph.xml"/>
<xi:include href="licenses.xml"/>
<index/>
</book>
|