| Contents | Index |
| On this page… |
|---|
How to Build Fuzzy Inference Systems Using Custom Functions in the GUI |
When you build a fuzzy inference system, as described in Overview of Fuzzy Inference Process, you can replace the built-in membership functions or inference functions, or both with custom functions. In this section, you learn how to build a fuzzy inference system using custom functions in the GUI. To learn how to build the system using custom functions at the command line, see Specifying Custom Membership and Inference Functions in Working from the Command Line.
To build a fuzzy inference system using custom functions in the GUI:
Specify the number of inputs and outputs of the fuzzy system, as described in The FIS Editor.
Create custom membership functions, and replace the built-in membership functions with them, as described in Specifying Custom Membership Functions.
Membership functions define how each point in the input space is mapped to a membership value between 0 and 1.
Create rules using the Rule Editor, as described in The Rule Editor.
Rules define the logical relationship between the inputs and the outputs.
Create custom inference functions, and replace the built in inference functions with them, as described in Specifying Custom Inference Functions.
Inference methods include the AND, OR, implication, aggregation and defuzzification methods. This action generates the output values for the fuzzy system.
The next figure shows the tipping problem example where the built-in Implication and Defuzzification functions are replaced with a custom implication function, customimp, and custom defuzzification function, customdefuzz, respectively.

Select View > Surface to view the output of the fuzzy inference system in the Surface Viewer, as described in The Surface Viewer.
You can create custom membership functions, and use them in the fuzzy inference process. The values of these functions must lie between 0 and 1. You must save the custom membership functions in your current working folder. To learn how to build fuzzy systems using custom membership functions, see How to Build Fuzzy Inference Systems Using Custom Functions in the GUI.
To create a custom membership function, and replace the built-in membership function:
Create a MATLAB function, and save it in your current working folder.
To learn how to create MATLAB functions, see the Program Files section in the MATLAB documentation.
The following code is an example of a multi-step custom membership function, custmf1, that depends on eight parameters between 0 and 10.
% Function to generate a multi-step custom membership function % using 8 parameters for the input argument x function out = custmf1(x, params) for i=1:length(x) if x(i)<params(1) y(i)=params(1); elseif x(i)<params(2) y(i)=params(2); elseif x(i)<params(3) y(i)=params(3); elseif x(i)<params(4) y(i)=params(4); elseif x(i)<params(5) y(i)=params(5); elseif x(i)<params(6) y(i)=params(6); elseif x(i)<params(7) y(i)=params(7); elseif x(i)<params(8) y(i)=params(8); else y(i)=0; end end out=.1*y'; % scaling the output to lie between 0 and 1
Open the FIS Editor by typing fuzzy at the MATLAB prompt, if you have not done so already.
The FIS Editor opens with the default FIS name, Untitled, and contains one input input1, and one output output1.
In the FIS Editor, select Edit > Membership Functions to open the Membership Function Editor.
Three triangular-shaped membership functions for input1 are displayed by default.

To replace the default membership function with a custom function in the Membership Function Editor:
Select Edit > Remove All MFs to remove the default membership functions for input1.
Select Edit > Add Custom MF to open the Custom Membership Function dialog box.

To specify a custom function in the Custom Membership Function dialog box:
Specify a name for the custom membership function in the MF name field.
Specify the name of the custom membership function file in the M-file function name field.
Specify a vector of parameters in the Parameter list field.
These values determine the shape and position of the membership function, and the function is evaluated using these parameter values.
Note The length of the parameter vector must be greater than or equal to the number of parameters in the custom membership function. |
Using the custmf1 example in step 1, the Custom Membership Function dialog box looks similar to the following figure.

Click OK to add the custom membership function.
The Membership Function Editor displays the custom membership function plot.

This action also adds the custom membership function to the Rule Viewer, and is now available for creating rules for the fuzzy inference process. To view the custom function in the Rule Viewer, select Edit > Rules in either the FIS Editor or the Membership Function Editor.

To add custom membership functions for output1, select it in the Membership Function Editor, and repeat steps 4 and 5.
You can replace the built-in AND, OR, implication, aggregation, and defuzzification inference methods with custom functions. After you create the custom inference function, save it in your current working folder. To learn how to build fuzzy systems using custom inference functions, see the How to Build Fuzzy Inference Systems Using Custom Functions in the GUI section.
You must follow a few guidelines when creating custom inference functions. The guidelines for creating and specifying the functions for building fuzzy inference systems are described in the following sections.
The custom AND and OR inference functions must operate column-wise on a matrix, in the same way as the MATLAB functions max, min, or prod.
For a row or column matrix x, min(x) returns the minimum element.
x=[1 2 3 4];
min(x)
ans =
1For a matrix x, min(x) returns a row vector containing the minimum element from each column.
x=[1 2 3 4;5 6 7 8;9 10 11 12];
min(x)
ans =
1 2 3 4For N-D arrays, min(x) operates along the first non-singleton dimension.
The function min(x,y) returns an array that is same size as x and y with the minimum elements from x or y. Either of the input arguments can be a scalar. Functions such as max, and prod operate in a similar manner.
In the toolbox, the AND implication methods perform an element by element matrix operation, similar to the MATLAB function min(x,y).
a=[1 2; 3 4];
b=[2 2; 2 2];
min(a,b)
ans =
1 2
2 2
The OR implication methods perform an element by element matrix operation, similar to the MATLAB function max(x,y).
The custom implication functions must operate in the same way as the MATLAB functions max, min, or prod and must be of the form y = custom_imp(w,outputmf).
Here w is an nr-by-ns matrix and contains the weight of each rule. nr is the number of rules, and ns is the number of parameters used to define the output membership functions. w(:,j) = w(:,1) for all j, and w(i,1) is the firing strength of the ith rule.
outputmf is an nr-by-ns matrix and contains the data for each output membership function, where the ith row is the data for the ith output membership function.
The following is an example of a custom implication function:
function impfun = custom_imp(w,outputmf) impfun = min(w,outputmf);
The custom aggregation functions must operate in the same way as the MATLAB functions max, min, or prod and must be of the form y = custom_agg(x).
x is an nv-by-nr matrix, which is the list of truncated output functions returned by the implication method for each rule. nv is the number of output variables, and nr is the number of rules. The output of the aggregation method is one fuzzy set for each output variable.
The following is an example of a custom aggregation function:
function aggfun = custom_agg(x) aggfun=(sum(x)/2).^0.5;
The custom defuzzification functions must be of the form y = custom_defuzz(xmf,ymf), where (xmf,ymf) is a finite set of membership function values. xmf is the vector of values in the membership function input range. ymf is the value of the membership function at xmf.
The following is an example of a custom defuzzification function:
function defuzzfun= custom_defuzz(xmf,ymf); total_area=sum(ymf); defuzzfun=sum(ymf*xmf)/total_area;
After you create and save a custom inference function, use the following steps to specify the function in the fuzzy inference process:
In the lower-left panel of the FIS Editor, select Custom from the drop-down menu corresponding to the inference method for which you want to specify the custom function.

This action opens a dialog box where you specify the name of the custom inference function.
In the Method name field, specify the name of the custom inference function, and click OK.

The custom function replaces the built-in function when building the fuzzy inference system.
To specify custom functions for other inference methods, repeat steps 1 and 2.
![]() | Building Systems with Fuzzy Logic Toolbox Software | Working from the Command Line | ![]() |

Learn more about resources for designing, testing, and implementing control systems.
Get free kit| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |