blob: 85ea4dde58b71c02f2e1e5c966e59741b49644d2 (
plain)
1
2
3
4
5
6
|
disp("Eg=1.420+(1.087*x)+(0.438*x^2)");
x=800*10^-9;
Eg=1.420+(1.087*x)+(0.438*x^2);
printf('\n The value of Eg is %feV',Eg);
printf('\n');
disp("The corresponding bandgap value for x=800nm from Eg(x) is 0.11");
|