Fuzzy markup language: Difference between revisions

Content deleted Content added
Closing stale January merge proposal; no case made; no support over many months
according to the published schema file in IEEE 1855-2016 the root of the xml has to be fuzzySystem
Line 44:
*defuzzification subsystem.
 
In detail, the opening tag of each FML program is <code><FuzzyControllerfuzzySystem></code> which represents the fuzzy controller under modeling. This tag has two attributes: ''name'' and ''ip''. The first attribute permits to specify the name of fuzzy controller and ''ip'' is used to define the ___location of controller in a computer network. The fuzzy knowledge base is defined by means of the tag <code><KnowledgeBase></code> which maintains the set of [[fuzzy concept]]s used to model the fuzzy rule base. In order to define the fuzzy
concept related controlled system, <code><KnowledgeBase></code> tag uses a set of nested tags:
*<code><FuzzyVariable></code> defines the fuzzy concept;
Line 69:
<syntaxhighlight lang="xml">
<?xml version="1.0" encoding="UTF-8"?>
<FuzzyControllerfuzzySystem name="newSystem" ip="127.0.0.1">
<KnowledgeBase>
<FuzzyVariable name="food" domainleft="0.0" domainright="10.0" scale="" type="input">
Line 94:
</KnowledgeBase>
............
</fuzzySystem>
</FuzzyController>
</syntaxhighlight>
 
Line 134:
<syntaxhighlight lang="xml">
<?xml version="1.0" encoding="UTF-8"?>
<FuzzyControllerfuzzySystem name="newSystem" ip="127.0.0.1">
<KnowledgeBase>
.......
Line 154:
<KnowledgeBase>
..........
</fuzzySystem >
</FuzzyController>
</syntaxhighlight>