blob: 7192354a3a15a0cd1cdd7938d8abb40fa1270a11 (
plain)
1
2
3
4
5
6
7
|
//example 3.1
clc;
clear;
disp("we can minimize the given equation as:");
disp('Y = AB'' + AB = A(B'' + B)');
disp('Therefore, Y = A(1) = A');
disp('this says that output Y equals to A, so all we hve to do is connect a wire between input A and output Y.');
|