Is there any function can compute the value of sgn?

2 次查看(过去 30 天)
Hello,
I read in a paper the following : sgn(A.B), where A and B are vectors. So what does that mean and is there any built in function that can do that? note that sgn is the sigmoid.
Regards,

采纳的回答

Star Strider
Star Strider 2018-8-8
The closest you can lkikely get is the sigmf (link) function in the Fuzzy Logic Toolbox.
You can easily write your own:
sgn = @(x,a,c) 1./(1 + exp(-a.*(x-c))); % Create Function
x = 0:0.1:10;
y = sgn(x, 2, 4);
plot(x,y)
xlabel('sigmf, P = [2 4]')
ylim([-0.05 1.05])
This plot matches the one in the documentation.
Experiment to get the result you want.
  2 个评论
Sarah A
Sarah A 2018-8-9
Thank you for your answer. could you please explain to me what are a and c ?
Star Strider
Star Strider 2018-8-9
As always, my pleasure.
They are scaling constants for the membership function.
This may not be the version you want, however. If you have a description of your function and the arguments, and the context in which you are using it, we can get closer to creating it. There appear to be several versions of the sigmoid function.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Histograms 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by