can anyone please help me in plotting graph for g=a*p/E with a as xaxis and g as yaxis.

1 vue (au cours des 30 derniers jours)
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)

Réponse acceptée

Walter Roberson
Walter Roberson le 11 Jan 2016
a = linspace(2.3*10^8, 5.6*10^8, 500);
p = 10^11;
E = 0.74;
g = a.*p./E;
plot(a, g);

Plus de réponses (1)

Lavanya Chandran
Lavanya Chandran le 25 Jan 2016
we are getting output for this program but we need two to three plot in single figure to show variations of absorption co-efficient(a).Kindly help us

Catégories

En savoir plus sur Quantum Mechanics dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by