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);
4.5m questions
5.8m answers