why my graph is blank ?

1 view (last 30 days)
Khor Chun Sheng
Khor Chun Sheng on 4 Jul 2020
Commented: Khor Chun Sheng on 4 Jul 2020
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)

madhan ravi
madhan ravi on 4 Jul 2020
  2 Comments
Khor Chun Sheng
Khor Chun Sheng on 4 Jul 2020
omg thank you so much man really appreaciate it , ive been looking for the answers for so long

Sign in to comment.

Categories

Find more on Graph and Network Algorithms 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!