gaussmf
Gaussian membership function
Syntax
Description
This function computes fuzzy membership values using a Gaussian membership
function. You can also compute this membership function using a fismf
object. For more information, see fismf Object.
A Gaussian membership function is not the same as a Gaussian probability distribution. For
example, a Gaussian membership function always has a maximum value of 1
.
For more information on Gaussian probability distributions, see Normal Distribution (Statistics and Machine Learning Toolbox).
Examples
Input Arguments
Output Arguments
Alternative Functionality
fismf
Object
You can create and evaluate a fismf
object that
implements the gaussmf
membership function.
mf = fismf("gaussmf",P);
Y = evalmf(mf,X);
Here, X
, P
, and Y
correspond to
the x
, params
, and y
arguments of gaussmf
, respectively.