hwo to find inverse of marcum fuction

조회 수: 5 (최근 30일)
ali alabodi
ali alabodi 2019년 12월 6일
답변: Star Strider 2019년 12월 6일
hwo to find inverse of marcum fuction in term of x where Q(Y,X)= q ,q is constant.

답변 (1개)

Star Strider
Star Strider 2019년 12월 6일
Try this:
Q = marcumq(5, 10); % Create Output
B0 = rand; % Initial Estimate
B = fminsearch(@(b) norm(marcumq(5,b(1)) - Q), B0); % Result
This is just an example, and it works here. I have no idea if it will work with the variables you will be using, so you may have to experiment with different initial estimates.

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

태그

제품


릴리스

R2015b

Community Treasure Hunt

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

Start Hunting!

Translated by