View source: R/symbolicToTruthTable.R
symbolicToTruthTable | R Documentation |
Converts an object of class SymbolicBooleanNetwork
into an object of class BooleanNetwork
by generating truth tables from the symbolic expression trees.
symbolicToTruthTable(network)
network |
An object of class |
The symbolic network network
must not contain temporal operators, as these are not compatible with the truth table representation in BooleanNetwork
objects.
Returns an object of class BooleanNetwork
, as described in loadNetwork
.
truthTableToSymbolic
, loadNetwork
## Not run:
# Convert a truth table representation into a
# symbolic representation and back
data(cellcycle)
symbolicNet <- truthTableToSymbolic(cellcycle)
print(symbolicNet)
ttNet <- symbolicToTruthTable(symbolicNet)
print(cellcycle)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.