hwo to find inverse of marcum fuction

6 views (last 30 days)
ali alabodi
ali alabodi on 6 Dec 2019
Answered: Star Strider on 6 Dec 2019
hwo to find inverse of marcum fuction in term of x where Q(Y,X)= q ,q is constant.

Answers (1)

Star Strider
Star Strider on 6 Dec 2019
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.

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Tags

Products


Release

R2015b

Community Treasure Hunt

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

Start Hunting!