Main Content

smf

R2026b

S-shaped membership function

Description

This function computes fuzzy membership values using a spline-based S-shaped membership function. You can also compute this membership function using a fismf object. For more information, see fismf Object.

This membership function is related to the zmf and pimf membership functions.

y = smf(x,params) returns fuzzy membership values computed using the spline-based S-shaped membership function given by:

f(x;a,b)={0,x≤a2(x−ab−a)2,a≤x≤a+b21-2(x−bb-a)2,a+b2≤x≤b1,x≥b}

To define the membership function parameters, specify params as the vector [a b].

Membership values are computed for each input value in x.

example

Examples

collapse all

Specify input values across the universe of discourse.

x = 0:0.1:10;

Evaluate membership function for the input values.

y = smf(x,[1 8]);

Plot the membership function.

plot(x,y)
xlabel("x")
ylabel("Degree of Membership")
ylim([-0.05 1.05])

A smooth S‑curve increasing from zero at x = 1, rising gradually then steeply through the mid‑range, and approaching full membership of 1 at x = 8.

Input Arguments

collapse all

Input values for which to compute membership values, specified as a scalar or vector.

Membership function parameters, specified as the vector [a b]. Parameter a defines the foot of the membership function, and b defines its shoulder.

Output Arguments

collapse all

Membership value returned as a scalar or a vector. The dimensions of y match the dimensions of x. Each element of y is the membership value computed for the corresponding element of x.

Alternative Functionality

fismf Object

You can create and evaluate a fismf object that implements the smf membership function.

mf = fismf("smf",P);
Y = evalmf(mf,X);

Here, X, P, and Y correspond to the x, params, and y arguments of smf, respectively.

Extended Capabilities

expand all

C/C++ Code Generation
Generate C and C++ code using MATLAB® Coder™.

Version History

Introduced before R2006a

expand all