ClauseParameters
Parameter settings for rule clauses
Description
A ClauseParameters
object contains tunable settings for either
the antecedent or consequent of a fuzzy rule.
Creation
Create a ClauseParameters
object using the getTunableSettings
function. The
third output of getTunableSettings
contains RuleSettings
objects. The Antecedent
and Consequent
properties of
each RuleSettings
object are ClauseParameter
objects for
specifying the tunable settings of the corresponding rule.
Properties
Free
— Clause parameter values available for tuning
1
| 0
| array of logical values
Clause parameter values available for tuning, specified as a logical
1
or 0
, or an array of logical values. To apply
different settings to each clause parameter, specify an array of logical values. To
apply the same setting to all clause parameter values, specify a scalar logical
value.
When the ClauseParameters
object represents a rule antecedent, the
clause parameter values are the membership functions corresponding to each input
variable.
When the ClauseParameters
object represents a rule consequent, the
clause parameter values are the membership functions corresponding to each output
variable.
AllowNot
— Flag indicating whether to allow NOT logic in rule clauses
1
| 0
| array of logical values
Flag indicating whether to allow NOT logic in rule clauses, specified as a logical
1
or 0
, or an array of logical values. To apply
different settings to each clause parameter, specify an array of logical values. To
apply the same setting to all clause parameter values, specify a scalar logical
value.
AllowEmpty
— Flag indicating whether to allow ignoring inputs and outputs in rule clauses
1
| 0
| array of logical values
Flag indicating whether to allow ignoring inputs and outputs in rule clauses,
specified as a logical 1
or 0
, or an array of
logical values. To apply different settings to each clause parameter, specify an array
of logical values. To apply the same setting to all clause parameter values, specify a
scalar logical value.
Examples
Obtain Tunable Settings for FIS Rules
Create a fuzzy inference system.
fis = mamfis("Name","fis1","NumInputs",2,"NumOutputs",1);
Obtain rule parameter settings from the FIS.
[~,~,rule] = getTunableSettings(fis);
Each rule parameter setting includes the FIS name, the index of the rule in the FIS, and parameter settings for the rule antecedent and consequent (the rule clauses). For each clause, you can specify the tunability settings.
View the default tunable settings for the antecedent of the first rule.
rule(1).Antecedent(1)
ans = ClauseParameters with properties: AllowNot: [0 0] AllowEmpty: [1 1] Free: [1 1]
You can use dot notation to specify the tunable settings for each rule.
Allow NOT logic in the antecedent of rule 1.
rule(1).Antecedent.AllowNot = true;
Make the consequent of rule 2 not available for tuning.
rule(2).Consequent.Free = 0;
Do not allow absence of a variable in the consequent of rule 3.
rule(3).Consequent.AllowEmpty = false;
Version History
Introduced in R2019a
See Also
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)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)