Xor
Back to table
/*
Logic-Function-Analysis
Xor
[LogicFunction g]=Xor(LogicFunction F1, ...);
F1 : a list of logic function
g : a logic function
Compute the XOR operator: g=Xor(F1,F2,...).
From the definition of the operator XOR, it only allows two inputs. At here, we allow the operator recursively act upon all the inputs.
*/
//-------------------------------------------------------------------
// examples
P=AndOr(){ 1; }
Q=AndOr(){ 2; }
f=Xor(P,Q);
Print(P,Q,f);
//-------------------------------------------------------------------
// result
Analysis AndOr NineComplement ToSOP ToVariableInvertedFunction DiagramGateName Email FeedbackDiagram logicvardef MantissaToPositiveNumber MostSignificantDigit PositiveDecimalToMantissa PositiveIntegerToMantissa object() One real() To2LayerOrAnd To2LayerAndXor To2LayerNand ShortestInputsForTransition TransitionSeries StateTransitionBasedly Implementation FullTable FastVerificationData StateDeviceName StateTransition string() ShannonExpansion Zero
The website is simply translated by using the Google Translate. Please inform us if you find the wrong/funny/weird translation.