How can I establish a logical expression from given truth table using MATLAB?

2 visualizzazioni (ultimi 30 giorni)
I have a given truth table with input and correspomding output. Then what is the process to establish a logical expression (eg: AB+C'B') from the given truth tabe with MATLAB code.
  1 Commento
Stephen23
Stephen23 il 2 Giu 2022
Note that there are infinitely many logical expressions which will generate a given truth table. Which one do you want?

Accedi per commentare.

Risposte (1)

KALYAN ACHARJYA
KALYAN ACHARJYA il 6 Feb 2022
Modificato: KALYAN ACHARJYA il 6 Feb 2022
#For Matrix Multiplication
out=A*B+C'*B';
#For Array Multiplication
out=A*.B+C'*.B';

Prodotti


Release

R2017b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by