blob: 94a7330d31f413bd47c348e1f36063b0af7850ea (
plain)
1
2
3
4
5
6
7
8
9
|
im=0.05;
v=5;
rm=3;
disp("Part a");
rt=v/im;
disp("the total resistance (in kΩ) of the meter is"); disp(rt);
disp("Part b");
rs=rt-rm;
disp("the necessary resistance (in kΩ) of the voltmeter multiplier is"); disp(rs);
|