blob: e800e62b62ac224a6e2d32875e402e5c577aea75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//example 4.10
clc; funcprot(0);
// Initialization of Variable
D=1;
I1=108;
I2=95;
P=1;
//calculation
I=I1-I2;
Pr=P*10^(I/10);
disp(Pr,"power provided in watt:")
clear()
|