can anyone please help me in plotting graph for g=a*p/E with a as xaxis and g as yaxis.
1 回表示 (過去 30 日間)
古いコメントを表示
Lavanya Chandran
2016 年 1 月 11 日
回答済み: Lavanya Chandran
2016 年 1 月 25 日
a is absorption co-efficient of InGaAs(2.3 TO 5.6*10^8), p is OPTICAL power intensity(10^11), E is the energy of QD (.74eV)
0 件のコメント
採用された回答
Walter Roberson
2016 年 1 月 11 日
a = linspace(2.3*10^8, 5.6*10^8, 500);
p = 10^11;
E = 0.74;
g = a.*p./E;
plot(a, g);
その他の回答 (1 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!