EVOLUTION-MANAGER
Edit File: make_kautz_graph.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>R: Kautz graphs</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="R.css" /> </head><body> <table width="100%" summary="page for make_kautz_graph {igraph}"><tr><td>make_kautz_graph {igraph}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Kautz graphs</h2> <h3>Description</h3> <p>Kautz graphs are labeled graphs representing the overlap of strings. </p> <h3>Usage</h3> <pre> make_kautz_graph(m, n) kautz_graph(...) </pre> <h3>Arguments</h3> <table summary="R argblock"> <tr valign="top"><td><code>m</code></td> <td> <p>Integer scalar, the size of the alphabet. See details below.</p> </td></tr> <tr valign="top"><td><code>n</code></td> <td> <p>Integer scalar, the length of the labels. See details below.</p> </td></tr> <tr valign="top"><td><code>...</code></td> <td> <p>Passed to <code>make_kautz_graph</code>.</p> </td></tr> </table> <h3>Details</h3> <p>A Kautz graph is a labeled graph, vertices are labeled by strings of length <code>n+1</code> above an alphabet with <code>m+1</code> letters, with the restriction that every two consecutive letters in the string must be different. There is a directed edge from a vertex <code>v</code> to another vertex <code>w</code> if it is possible to transform the string of <code>v</code> into the string of <code>w</code> by removing the first letter and appending a letter to it. </p> <p>Kautz graphs have some interesting properties, see eg. Wikipedia for details. </p> <h3>Value</h3> <p>A graph object. </p> <h3>Author(s)</h3> <p>Gabor Csardi <csardi.gabor@gmail.com>, the first version in R was written by Vincent Matossian. </p> <h3>See Also</h3> <p><code><a href="make_de_bruijn_graph.html">make_de_bruijn_graph</a></code>, <code><a href="make_line_graph.html">make_line_graph</a></code> </p> <h3>Examples</h3> <pre> make_line_graph(make_kautz_graph(2,1)) make_kautz_graph(2,2) </pre> <hr /><div style="text-align: center;">[Package <em>igraph</em> version 1.3.5 <a href="00Index.html">Index</a>]</div> </body></html>