Z-shaped membership function
This function computes fuzzy membership values using a spline-based Z-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
pimf
membership functions.
fismf
ObjectYou can create and evaluate a fismf
object that
implements the zmf
membership function.
mf = fismf("zmf",P);
Y = evalmf(mf,X);
Here, X
, P
, and Y
correspond to
the x
, params
, and y
arguments of zmf
, respectively.