can anyone please help me in plotting graph for g=a*p/E with a as xaxis and g as yaxis.
조회 수: 1 (최근 30일)
이전 댓글 표시
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개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Quantum Mechanics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!