why my graph is blank ?

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)

./

2 Comments

omg thank you so much man really appreaciate it , ive been looking for the answers for so long
thankss

Sign in to comment.

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Asked:

on 4 Jul 2020

Commented:

on 4 Jul 2020

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!