fsolve - function with two input arguments
조회 수: 9 (최근 30일)
이전 댓글 표시
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
채택된 답변
Jeff Miller
2020년 1월 30일
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
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!