gauss2mf
Gaussian combination membership function
Syntax
Description
This function computes fuzzy membership values using a combination of two Gaussian
membership functions. You can also compute this membership function using a
fismf
object. For more information, see fismf Object.
returns fuzzy membership values computed using a combination of two Gaussian membership
functions computed. Each Gaussian function defines the shape of one side of the membership
function and is given by:y
= gauss2mf(x
,params
)
To specify the standard deviation, σ, and mean, c,
for each Gaussian function, use params
.
Membership values are computed for each input value in x
.
Examples
Input Arguments
Output Arguments
Alternative Functionality
fismf
Object
You can create and evaluate a fismf
object that
implements the gauss2mf
membership function.
mf = fismf("gauss2mf",P);
Y = evalmf(mf,X);
Here, X
, P
, and Y
correspond to
the x
, params
, and y
arguments of gauss2mf
, respectively.