blob: 7eee507245ccc7122661e9054775678d61478f89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//Exa 3.10.4
clc;
clear;
close;
// Given data
// Part (i)
T1= 25;// in °C
T2= 80;// in °C
// Formula Io2= Io1*2^((T2-T1)/10)
AntiFactor= 2^((T2-T1)/10);
disp(round(AntiFactor),"Anticipated factor for Ge is : ")
// Part (ii)
T1= 25;// in °C
T2= 150;// in °C
AntiFactor= 2^((T2-T1)/10);
disp(round(AntiFactor),"Anticipated factor for Si is : ")
|