Not enough input arguments error
Afficher commentaires plus anciens
clear;
global Ndo i
q = 1.6e-19;
Ndo = logspace(14,18);
d= 5.0e-4;
j = length(Ndo);
for i=1:j
R(i) = (1)./(q*d.*integral(Rintg, 0, 1));
end
loglog(Ndo, R); grid
xlabel('Ndo (cm-3)'); ylabel('R (ohms)');
function [y] = Rintg(x)
global Ndo i
Ndb = 1.0e14;
Nd = Ndb + Ndo(i).*exp((-5).*x);
Mnmin = 92;
Mno = 1268;
Ndref = 1.3e17;
an = 0.91;
Mn = Mnmin +Mno./(1+(Nd./Ndref).^an);
y = Mn.*Nd;
end
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Elementary Math dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!