Filter löschen
Filter löschen

How can this probability function be entered?

1 Ansicht (letzte 30 Tage)
Matthew Nanos
Matthew Nanos am 8 Mär. 2015
Kommentiert: Star Strider am 9 Mär. 2015
I'm very new to matlab. I want to take this equation and use matlab to graph it:
I used this code
The variable P is created but it has a value for the first element, then all zeros.

Akzeptierte Antwort

Star Strider
Star Strider am 8 Mär. 2015
You have to vectorise your assignment for ‘P’:
k = 1.3806488E-23;
e = 6.0217657E-19;
z = 2;
Vh = 1E-3;
T1 = 25+273.15;
T2 = 37+273.15;
V = linspace(-0.1, 0.09);
VV = V-Vh;
P = 1./(1+exp(-z*e*(VV/(k*T1))));
figure(1)
plot(V, P)
grid

Weitere Antworten (1)

Greig
Greig am 8 Mär. 2015
Change P to
P = (1./(1+exp(-z*e*(VV/(k*T1)))));
Since the (1+exp(..)) is a vector you have to use array division (./)

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by