blob: 82615ef9327bf5007da3040a6ae2b03b86627309 (
plain)
1
2
3
4
5
6
7
8
9
|
// example 5.1.B//
clc
//clears the screen//
clear
//clears all existing variables//
disp("we can DUAL the given equation as : ");
disp('X= [(A.B''+C'').D+E''].F' );
disp(' Therefore, SO X'' = [(A''B).C+D''].E+F''' );
disp('this says that output Y=[(A''B).C+D''].E+F'')' );
|