help with equation substituting
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
mohamed
am 10 Mär. 2016
Kommentiert: Walter Roberson
am 12 Mär. 2016
hi i want to substitute in an equation that has 2 variables (q) and (pwf), given that the user has to input several values for (pwf) to substitute into the equation and solve for (q)
Thank you
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 10 Mär. 2016
Example:
new_pwf = rand();
new_equation = subs(TheEquation, pwf, new_pwf);
sol = solve(new_equation, q)
4 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!