hypercube {ResistorArray} | R Documentation |
Conductance matrix of a Boolean hypercube
Description
Returns the conductance matrix of an n-dimensional hypercube
Usage
hypercube(n)
Arguments
n |
Integer giving the dimension of the hypercube |
Details
The row and columnnames give the coordinates of each node (which are in binary order)
Value
Returns a conductance matrix
Note
In the case of a 3D cube, the nodes are in a different order from that
returned by cube()
(which uses Maple's scheme).
Author(s)
Robin K. S. Hankin
References
See Also
Examples
hypercube(4)
resistance(hypercube(5),1,32) # cf exact answer of 8/15
resistance(hypercube(5),1,2) # cf exact answer of n <- 5; (2^n-1)/(n*2^(n-1))=31/80
[Package ResistorArray version 1.0-32 Index]