What is the best function of the following shape?

3 次查看(过去 30 天)
How can I construct this shape? what is the best function of it?
It is more like sigmoid function + straight line
But I cant get how can I represent it by one equation and How to control its limits!
The Y limits should be from 0 to 1
( I want to use it as a fuzzy memebership function)
Is there any recommendation?
  2 个评论
Sam Chak
Sam Chak 2022-9-7
Not exactly sure what you want to do because you didn't define the problem in a mathematical manner. The existing functions in the Fuzzy Toolbox library stock do not have cutoff points. Guess you want to create a custom Sigmoidal Membership Function with one-sided cutoff point for your unique Fuzzy System, where it can be rescaled and reflected in anyway you want:
M
M 2022-9-7
Hi @Sam Chak, How did you get the above plots? Could you please provide me with the code.
I want to use this membership function in a code, not with the fuzzy tool box. Thanks

请先登录,再进行评论。

采纳的回答

Sam Chak
Sam Chak 2022-9-7
编辑:Sam Chak 2022-9-12
Hi @M
The original code was accidentally highlighted and deleted due to sensitive touchpad. It was constructed based on @Torsten's idea on the Arctangent function but I replaced it with the Logistic function as shown in this link:
Since you don't want anything to do with the Fuzzy Logic Toolbox, this new solution, a Quintic function (not in the toolbox, so you can probably claim novelty in the Fuzzy MF paper), is tailor-made for you so that you adjust the position of the cutoff point (end point of blue line) easily.
Example #1: The Quintic function, a 5th-order polynomial, is commonly used in the trajectory planning of a mobile robot. So I modified the function for a custom fuzzy membership function.
I have not tested everything. But this is the basic concept for you to develop. Hope it helps.
% Quintic function-based MF (blue line as main)
% Start point (xA, yA); End point (xB, yB);
xf = 1;
x = linspace(0, xf, xf*1e4 + 1);
yA = 0;
yB = 1;
xA = 0.1;
xB = 0.9;
y = (yA + (10*((x - xA)/(xB - xA)).^3 - 15*((x - xA)/(xB - xA)).^4 + 6*((x - xA)/(xB - xA)).^5)*(yB - yA)).*((0 <= (x - xA)) & ((x - xA) < (xB - xA)));
plot(x, y, -(x-xf), y), grid on, ylim([0 1.2])
legend('MF_1', 'MF_2', 'location', 'north')
xlabel('Universe of Discourse, \it{x}'), ylabel('\mu(\it{x})')
Example #2: Using the Logistic function:
xf = 1;
x = linspace(0, xf, xf*1e4 + 1);
xA = 0.1; % Left bound of the blue S-curve
xB = 0.9; % Right bound of the blue S-curve
a = 2*9.2; % (logistic growth rate) adjust the steepness of S-curve
c = 0.5; % shift the center of S-curve to x = c
y = sigmf(x, [a c]).*((0 <= (x - xA)) & ((x - xA) < (xB - xA)));
plot(x, y, -(x-xf), y), grid on, ylim([0 1.2])
legend('MF_1', 'MF_2', 'location', 'north')
xlabel('Universe of Discourse, \it{x}'), ylabel('\mu(\it{x})')
  7 个评论
Sam Chak
Sam Chak 2022-9-12
@M, Theoretically, the polynomial function offers more flexibility in adjusting the shape of the S-curve in anyway you like as long as it is monotonically increasing/decreasing, and if you know how to adjust the coefficients of the terms.
For simplicity, you may want to choose the Logistic function (aka sigmf), because you just need adjust one parameter, the logistic growth rate (a) to shape the steepness of the S-curve.
I have added a second example in the edited Answer.
Bruno Luong
Bruno Luong 2022-9-12
((0 <= (x - xA)) & ((x - xA) < (xB - xA)))
or equivalently
((x >= xA) & (x < xB))

请先登录,再进行评论。

更多回答(4 个)

Torsten
Torsten 2022-9-6
编辑:Torsten 2022-9-6
x = -2:0.01:2;
plot([x,x(end)],[1/pi*atan(2*x)+1/2,1/pi*atan(2*x(1))+1/2])
xlim ([-3 3])
ylim ([0 1])
  14 个评论

请先登录,再进行评论。


Bruno Luong
Bruno Luong 2022-9-7
Try this:
xmin = 1;
xmax = 3;
pp = struct('form','pp',...
'breaks',[-1e-100 0 1 inf],...
'coefs',[0 0 0 0 0 0;6,-15,10,0,0,0;0 0 0 0 0 1],...
'pieces',3,...
'order',6,...
'dim',1);
sfun = @(x) ppval(pp,(x-xmin)/(xmax-xmin));
ezplot(sfun,xmin-1,xmax+1)
  13 个评论
Walter Roberson
Walter Roberson 2022-9-12
In analysis, a "function" is any mapping of values to other values. It might or might not be "one to one" or "onto". There is no requirement that the function maps all possible inputs in the domain.
In analysis, functions over infinite sets are treated like the limit of finite mappings. For example, x->x^2, x in Z, is treated as-if it were the set of mappings {..., -2 -> 4, -1 -> 1, 0 -> 0, 1 -> 1, 2 -> 2, ...} rather than as being something fundamentally different. There does not have to be a formula for a function: the complete list of mappings defines the function; formulae can make it significantly more compact to express though. The mappings are the fundamental property of the function; formulae are conveniences to express mappings.
Bruno Luong
Bruno Luong 2022-9-12
编辑:Bruno Luong 2022-9-12
"There is no requirement that the function maps all possible inputs in the domain."
Wrong to my book, all elements of input set (domain) must be mapped (defined) by the function.

请先登录,再进行评论。


Walter Roberson
Walter Roberson 2022-9-6
Looks like tansig
  2 个评论
M
M 2022-9-6
编辑:M 2022-9-6
@Walter Roberson, I need a general eqaution for this shape so I can adjust the hight and width of it depending on my application ( I want to use it as a fuzzy memebership function). Note that there is a left straight line to the curve, what could be the best eqaution that represents shape?

请先登录,再进行评论。


James Tursa
James Tursa 2022-9-6
编辑:James Tursa 2022-9-6
There are lots of functions that could fit this general shape. E.g., sin(x), or more generally A*sin(B*x+C) depending on width and height of the graph which you don't show. Maybe you could share some more details about where this shape comes from and the height and width sizes.
  3 个评论
M
M 2022-9-6
编辑:M 2022-9-6
@James Tursa, I think it could be sigmoid function + straight line
But cant get how can I represent it by one equation and How to control its limits!

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Fuzzy Logic Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by