Fuzzy Logic Controller
Evaluate fuzzy inference system
Libraries:
Fuzzy Logic Toolbox
Description
The Fuzzy Logic Controller block implements a fuzzy inference system (FIS) in Simulink®. You specify the FIS to evaluate using the FIS name parameter.
For more information on fuzzy inference, see Fuzzy Inference Process.
To display the fuzzy inference process in the Rule Viewer during simulation, use the Fuzzy Logic Controller with Ruleviewer block.
Examples
Ports
Input
in — Input signal
scalar | vector
For a single-input fuzzy inference system, the input is a scalar signal. For a multi-input fuzzy system, combine the inputs into a vector signal using blocks such as:
Mux (Simulink)
Vector Concatenate (Simulink)
Bus Creator (Simulink)
Output
out — Defuzzified output signal
scalar | vector
For a single-output FIS, the output is a scalar signal. For a multi-output FIS, the output is a vector signal. To split system outputs into scalar signals, use the Demux (Simulink) block.
fi — Fuzzified input values
matrix
Fuzzified input values, obtained by evaluating the input membership functions of each rule at the current input values.
For a type-1 FIS, fi
is an
NR-by-NU
matrix signal, where NR is the
number of FIS rules. Element (i,j) of
fi
is the value of the input membership function
for the jth input in the ith rule.
For a type-2 FIS, fi
is an
NR-by-(2*NU)
matrix signal. The first NU
columns contain the fuzzified values of the upper membership function
for each rule, and the last NU
columns contain the fuzzified values from the lower membership
functions.
For more information on fuzzifying input values, see Fuzzify Inputs.
Dependencies
To enable this port, select the Fuzzified inputs (fi) parameter.
rfs — Rule firing strengths
column vector
Rule firing strengths, obtained by evaluating the antecedent of each rule; that is, applying the fuzzy operator to the values of the fuzzified inputs.
For a type-1 FIS, rfs
is a column vector signal of
length NR, where
NR is the number of
rules, and element i is the firing strength of the
ith rule.
For a type-2 FIS, rfs
is an
NR-by-2 matrix signal.
The first column contains the rule firing strengths generated using
upper membership functions, and the second column contains the rule
firing strengths generated using lower membership functions.
For more information on applying fuzzy operators, see Apply Fuzzy Operator.
Dependencies
To enable this port, select the Rule firing strengths (rfs) parameter.
ro — Rule outputs
matrix
Rule outputs, obtained by applying the rule firing strengths to the output membership functions using the implication method specified in the FIS.
For a type-1 Mamdani FIS, ro
is an
NS-by-(NRNY)
matrix signal, where NR is the
number of rules, NY is the
number of outputs, and NS is
the number of sample points used for evaluating output variable ranges.
Each column of ro
contains the output fuzzy set for
one rule. The first NR columns
contain the rule outputs for the first output variable, the next
NR columns correspond
to the second output variable, and so on.
For a type-2 Mamdani FIS, ro
is an
NS-by-(2*NR*NY)
matrix signal. The first
NR*NY
columns contain the rule outputs generated using upper membership
functions, and the last
NR*NY
columns contain the rule outputs generated using lower membership
functions.
For a type-1 Sugeno system, each rule output is a scalar value. In
this case, ro
is an
NR-by-NY
matrix signal. Element (j,k) of
ro
is the value of the kth
output variable for the jth rule.
For a type-2 Sugeno system, ro
is an
NR-by-(3*NY)
array. The first NY columns
contain the rule output levels. The next
NY columns contain the
corresponding rule firing strengths generated using upper membership
functions. The last NY columns
contain the rule firing strengths generated using lower membership
functions. For example, in a three-output system, columns 4 and 7
contain the firing strengths for the output levels in column 1.
For more information on fuzzy implication, see Apply Implication Method.
Dependencies
To enable this port, select the Rule outputs (ro) parameter.
To specify NS, use the Number of samples for output discretization parameter.
ao — Aggregated output
matrix | row vector
Aggregate output for each output variable, obtained by combining the corresponding outputs from all the rules using the aggregation method specified in the FIS.
For a type-1 Mamdani fuzzy inference system, the aggregate result for
each output variable is a fuzzy set. In this case, ao
is as an
NS-by-NY
matrix signal, where NY is the
number of outputs and NS is
the number of sample points used for evaluating output variable ranges.
Each column of ao
contains the aggregate fuzzy set
for one output variable.
For a type-2 Mamdani FIS, the aggregate result for each output
variable is a fuzzy set. In this case, ao
is as an
NS-by-(2*NY)
matrix signal. The first NY
columns contain the aggregated outputs generated using upper membership
functions, and the last NY
columns contain the aggregated outputs generated using lower membership
functions.
For a type-1 Sugeno system, the aggregate result for each output
variable is a scalar value. In this case, ao
is a row
vector of length NY, where
element k is the sum of the rule outputs for the
kth output variable.
For a type-2 Sugeno system, ao
is an
NR-by-(3*NY)
array. aggregatedOut
contains the same data as
ro
with the columns sorted based on the output
levels. For example, in a three-output system, when the output levels in
column 1 are sorted, the corresponding firing strengths in columns 4 and
7 are adjusted accordingly.
For more information on fuzzy aggregation, see Aggregate All Outputs.
Dependencies
To enable this port, select the Aggregated outputs (ao) parameter.
To specify NS, use the Number of samples for output discretization parameter.
Parameters
General
FIS name — Fuzzy inference system
mamfis
object | sugfis
object | mamfistype2
object | sugfistype2
object | file name
Fuzzy inference system to evaluate, specified as one of the following:
mamfis
orsugfis
object — Specify the name of a type-1 FIS object in the MATLAB® workspace.mamfistype2
orsugfistype2
object — Specify the name of a type-2 FIS object in the MATLAB workspace. (since R2019b)File name — Specify the name of a FIS file (
*.fis
) in the current working folder or on the MATLAB path. Including the file extension in the file name is optional.To save a fuzzy inference system to a FIS file:
In Fuzzy Logic Designer, on the Design tab, under Save, select the system to save.
At the command line, use
writeFIS
.
Programmatic Use
Block Parameter:
FIS |
Type: string, character vector |
Default:
'tipper.fis' |
Number of samples for output discretization — Number of points in output fuzzy sets
101 (default) | integer greater than 1
Number of samples for discretizing the range of output variables,
specified as an integer greater than 1
. This value
corresponds to the number of points in the output fuzzy set for each
rule.
To reduce memory usage while evaluating a Mamdani FIS, specify a lower number of samples. Doing so sacrifices the accuracy of the defuzzified output value. Specifying a low number of samples can make the output area for defuzzification zero. In this case, the defuzzified output value is the midpoint of the output variable range.
Note
The block ignores this parameter when evaluating a Sugeno FIS.
Programmatic Use
Block Parameter:
OutputSampleNumber |
Type: string, character vector |
Default:
"101" |
Data type — Signal data type
double
(default) | single
| fixed-point
| expression
Signal data type, specified as one of the following:
double
— Double-precision signalssingle
— Single-precision signalsfixdt(1,16,0)
— Fixed-point signals with binary point scalingfixdt(1,16,2^0,0)
— Fixed-point signals with slope and bias scalingExpression — Expression that evaluates to one of these data types
For fixed-point data types, you can configure the signedness, word length, and scaling parameters using the Data Type Assistant. For more information, see Specifying a Fixed-Point Data Type (Simulink).
Programmatic Use
Block Parameter:
DataType |
Type: string, character vector |
Values:
"double" , "single" ,
"fixdt(1,16,0)" ,
"fixdt(1,16,2^0,0)" |
Default:
"double" |
Fuzzified inputs (fi) — Enable fi
output port
off
(default) | on
Enable output port for accessing intermediate fuzzified input data.
Programmatic Use
Block Parameter:
FuzzifiedInputs |
Type: string, character vector |
Values:
"off" , "on" |
Default:
"off" |
Rule firing strengths (rfs) — Enable rfs
output port
off
(default) | on
Enable output port for accessing intermediate rule firing strength data.
Programmatic Use
Block Parameter:
RuleFiringStrengths |
Type: string, character vector |
Values:
"off" , "on" |
Default:
"off" |
Rule outputs (ro) — Enable ro
output port
off
(default) | on
Enable output port for accessing intermediate rule output data.
Programmatic Use
Block Parameter:
RuleOutputs |
Type: string, character vector |
Values:
"off" , "on" |
Default:
"off" |
Aggregated outputs (ao) — Enable ao
output port
off
(default) | on
Enable output port for accessing intermediate aggregate output data.
Programmatic Use
Block Parameter:
AggregatedOutputs |
Type: string, character vector |
Values:
"off" , "on" |
Default:
"off" |
Simulate using — Simulation mode
Interpreted
execution
(default) | Code generation
Simulation mode, specified as one of the following:
Interpreted execution
— Simulate fuzzy systems using precompiled MEX files forsingle
anddouble
data types. Using this option reduces the initial compilation time of the model.Code generation
— Simulate fuzzy system without precompiled MEX files. Use this option when simulating fuzzy systems for code generation applications.
For fixed-point data types, the Fuzzy Logic Controller
block always simulates using Code generation
mode.
Programmatic Use
Block Parameter:
SimulateUsing |
Type: string, character vector |
Values:
"Interpreted execution" , "Code
generation" |
Default:
"Interpreted execution" |
Diagnostics
Out of range input value — Diagnostic message behavior when an input is out of range
warning
(default) | error
| none
Diagnostic message behavior when an input is out of range, specified as one of the following:
warning
— Report the diagnostic message as a warning.error
— Report the diagnostic message as an error.none
— Do not report the diagnostic message.
When an input value is out of range, corresponding rules in the fuzzy system can have unexpected firing strengths.
Dependencies
Diagnostic messages are provided only when the Simulate using parameter is
Interpreted execution
.
Programmatic Use
Block Parameter:
OutOfRangeInputValueMessage |
Type: string, character vector |
Values:
"warning" , "error" ,
"none" |
Default:
"warning" |
No rule fired — Diagnostic message behavior when no rules fire
warning
(default) | error
| none
Diagnostic message behavior when no rules fire for a given output variable, specified as one of the following:
warning
— Report the diagnostic message as a warning.error
— Report the diagnostic message as an error.none
— Do not report the diagnostic message.
When No rule fired is
warning
or
none
and no rules fire for a given
output, the defuzzified output value is set to its mean range
value.
Dependencies
Diagnostic messages are provided only when the Simulate using parameter is
Interpreted execution
.
Programmatic Use
Block Parameter:
NoRuleFiredMessage |
Type: string, character vector |
Values:
"warning" , "error" ,
"none" |
Default:
"warning" |
Empty output fuzzy set — Diagnostic message behavior when an output fuzzy set is empty
warning
(default) | error
| none
Diagnostic message behavior when an output fuzzy set is empty, specified as one of the following:
warning
— Report the diagnostic message as a warning.error
— Report the diagnostic message as an error.none
— Do not report the diagnostic message.
When Empty output fuzzy set is
warning
or
none
and an output fuzzy set is empty,
the defuzzified value for the corresponding output is set to its mean
range value.
Dependencies
This diagnostic message applies to Mamdani systems only.
Diagnostic messages are provided only when the Simulate using parameter is
Interpreted execution
.
Programmatic Use
Block Parameter:
EmptyOutputFuzzySetMessage |
Type: string, character vector |
Values:
"warning" , "error" ,
"none" |
Default:
"warning" |
Extended Capabilities
C/C++ Code Generation
Generate C and C++ code using Simulink® Coder™.
PLC Code Generation
Generate Structured Text code using Simulink® PLC Coder™.
Fixed-Point Conversion
Design and simulate fixed-point systems using Fixed-Point Designer™.
Version History
Introduced before R2006aR2019b: Support for fuzzy inference system structures will be removed
Support for representing fuzzy inference systems as structures will be removed in
a future release. Use mamfis
and
sugfis
objects with this function instead. To convert existing fuzzy inference system
structures to objects, use the convertfis
function.
This change was announced in R2018b. Using fuzzy inference system structures with this block issues a warning starting in R2019b.
R2017b: Access intermediate fuzzy inference results
Using the Fuzzy Logic Controller block, you can access intermediate fuzzy inference results by enabling the following output ports.
fi
— Fuzzified input valuesrfs
— Rule firing strengthsro
— Rule outputsao
— Aggregated membership function for each output variable
R2017b: Expanded data type support
The Fuzzy Logic Controller block supports double-precision, single-precision, and fixed-point data types.
R2017b: Improved code generation support
When generating code using Simulink Coder™, the Fuzzy Logic Controller block supports code generation for fuzzy systems that use:
Single-precision data.
Fixed-point data. To generate code for fixed-point data, you need Fixed-Point Designer™ software.
Custom membership functions and custom inference functions. For more information on specifying custom functions for a fuzzy system, see Build Fuzzy Systems Using Custom Functions.
R2017b: PLC code generation support
The Fuzzy Logic Controller block supports generation of IEC 61131-3 Structured Text for PLC deployment using Simulink PLC Coder™ software.
See Also
Blocks
Apps
Functions
mamfis
|sugfis
|mamfistype2
|sugfistype2
|readfis
|evalfis
|genfis
|writeFIS
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)