Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

% AND

w1=1;
w2=1;
x1=input('x1: ');
x2=input('x2: ');
soma=w1*x1+w2*x2;
if soma>=2
y = 1
else
y= 0
end

% OR
w1=2;
w2=2;
x1=input('x1: ');
x2=input('x2: ');
soma=w1*x1+w2*x2;
if soma>=2
y = 1
else
y= 0
end

% NOT
w1=2;
w2=-1;
x1=input('x1: ');
x2=input('x2: ');
soma=w1*x1+w2*x2;
if soma>=2
y = 1
else
y= 0
end

You might also like