Pi-shaped membership function
This function computes fuzzy membership values using a spline-based pi-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 smf
and
zmf
membership functions.
returns fuzzy membership values computed using a spline-based pi-shaped membership function.
This membership function is the product of an y
= pimf(x
,params
)smf
function and a zmf
function, and is given by:
To specify the a, b, c, and
d parameters, use params
.
Membership values are computed for each input value in x
.
fismf
ObjectYou can create and evaluate a fismf
object that
implements the pimf
membership function.
mf = fismf("pimf",P);
Y = evalmf(mf,X);
Here, X
, P
, and Y
correspond to
the x
, params
, and y
arguments of pimf
, respectively.