blob: 1a79a8d25f444dad5eed9a69e2cff8ba22815192 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Exa 6.2
clc;
clear;
close;
format('v',6)
// Given data
Rm = 6;// in ohm
Rsh = 0.025;// in ohm
N = 1 + (Rm/Rsh);// multiplying factor
disp(N,"The multiplying factor is");
|