Getting x value for a given y value from a fitted model

4 次查看(过去 30 天)
Hi,
I have my code:
curve = @(a, b, c, d, e, x) a./(b+exp(-c*(x-d)))+e;
lower_bound = [-Inf -Inf -Inf 0, 0];
upper_bound = [Inf Inf Inf max(x), max(y)];
starting_param = [max(y) 1 1 x(round(length(x)/2)), min(y)];
sigm=fit(x, y, curve, 'StartPoint', starting_param, 'Lower', lower_bound, 'Upper', upper_bound) ;
I'm getting my fit result in the sigm which is cfit type.
My question is: how to obtain x value from a given y value out of sigm? If I write ans=sigm(0.5) I'm getting y value for a x=0.5 What I want is to get x value for y=0.5. How to code it?
thanks for help!

采纳的回答

dpb
dpb 2013-7-17
A) Evaluate the function over a range of x and then use interp1 to interpolate over the response to find a given x that gives a desired value.
B) Use fsolve() Recast the function to form f(x)-y = 0 where y is your target value.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Multicore Processor Targets 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by