blob: 83ec3857c8cb5a0a48b930d41eb29a5a1f7251d1 (
plain)
1
2
3
4
5
6
7
|
//Example 12.14
//Find the mean value of the current under following conditions.
disp('I=Io[e^(nV)-1]')
disp('E[I]=E[Io[e^(nV)-1]]:')
Xo=0; X1=2;
X=integrate('%e^(10*X)-1','X',Xo,X1);
disp(10^(-9)*X/2,'Hence E[I]=')
|