fsolve - function with two input arguments
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ignacij
am 29 Jan. 2020
Beantwortet: Ignacij
am 2 Feb. 2020
Hello!
Is it possible to solve function with two input arguments? I have function in which I input two parameters and it returns one.
Example:
x = function(a,b)

But now i have a problem. I know parameters x and a, how do I get parameter b? Is it even possible?
Thanks for your reply!
0 Kommentare
Akzeptierte Antwort
Jeff Miller
am 30 Jan. 2020
function b = find_b(knownX, knownA, guessForB)
fun = @(b) pfun2(knownA,b) - knownX;
b = fzero(fun,guessForB);
end
Depending on your pfun2, you may or may not need a guessForB that is close to the right value.
0 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Logical 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!