Solving a mathematical equation

1 Ansicht (letzte 30 Tage)
Pooya Jahedi
Pooya Jahedi am 7 Apr. 2022
Kommentiert: Davide Masiello am 7 Apr. 2022
Hello
I have ojne equation I want to learn how can I solve this equation in Matlab? my equation is : and I want to solve with respect to P
  7 Kommentare
Pooya Jahedi
Pooya Jahedi am 7 Apr. 2022
No
Davide Masiello
Davide Masiello am 7 Apr. 2022
Then look at my answer below, it should provide you with a suitable solution.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Davide Masiello
Davide Masiello am 7 Apr. 2022
Bearbeitet: Davide Masiello am 7 Apr. 2022
Example
clear,clc
beta = 0.5;
kH = 1;
P0 = 1;
qm = 2;
kS = 0.01;
n = 2;
qx = 1;
func = @(P) qx-(beta*kH*(P/P0)+(1-beta)*qm*(kS*P/P0)^(1/n)/(1+(kS*P/P0)^(1/n)));
result = fzero(func,1)
result = 1.7654
Just replace the actual values of all the constants and you're good to go.

Kategorien

Mehr zu Mathematics 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