How can I establish a logical expression from given truth table using MATLAB?
조회 수: 2 (최근 30일)
이전 댓글 표시
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
Stephen23
2022년 6월 2일
Note that there are infinitely many logical expressions which will generate a given truth table. Which one do you want?
답변 (1개)
KALYAN ACHARJYA
2022년 2월 6일
편집: KALYAN ACHARJYA
2022년 2월 6일
#For Matrix Multiplication
out=A*B+C'*B';
#For Array Multiplication
out=A*.B+C'*.B';
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!