why my graph is blank ?
Show older comments
a = 0.473e-3;
b = 636;
Eo = 1.12;
T = 300;
Eg = Eo-(a*(T^2)/(T+b));
t = 25:25:500;
Ega = 1.12-((0.473e-3)*(t.^2)/(t+636));
plot(t,Ega)
xlabel('temperature')
ylabel('energy band gap')
title('graph')
Eg
Answers (1)
Categories
Find more on 2-D and 3-D Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!