Answer:
See explaination
Step-by-step explanation:
format RAT
Number=input('Enter the no. of resistors:');
R=ParallelR(Number)
function Req=ParallelR(N)
R=0;
for i=1:N
r=input('Enter Resistor Value:');
R=R+1/r;
end
Req=(1/R);
3.3m questions
4.2m answers