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
답변 (1개)
카테고리
도움말 센터 및 File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!