can anyone please help me in plotting graph for g=a*p/E with a as xaxis and g as yaxis.
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Lavanya Chandran
il 11 Gen 2016
Risposto: Lavanya Chandran
il 25 Gen 2016
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 Commenti
Risposta accettata
Walter Roberson
il 11 Gen 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);
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Quantum Mechanics in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!