
Last chance! 50% off unlimited learning
Sale ends in
Converts an object of class SymbolicBooleanNetwork
into an object of class BooleanNetwork
by generating truth tables from the symbolic expression trees.
symbolicToTruthTable(network)
Returns an object of class BooleanNetwork
, as described in loadNetwork
.
An object of class SymbolicBooleanNetwork
to be converted.
The symbolic network network
must not contain temporal operators, as these are not compatible with the truth table representation in BooleanNetwork
objects.
truthTableToSymbolic
, loadNetwork
if (FALSE) {
# Convert a truth table representation into a
# symbolic representation and back
data(cellcycle)
symbolicNet <- truthTableToSymbolic(cellcycle)
print(symbolicNet)
ttNet <- symbolicToTruthTable(symbolicNet)
print(cellcycle)
}
Run the code above in your browser using DataLab