Main Content

showfis

(To be removed) Display annotated fuzzy inference system

    showfis will be removed in a future release. View the properties of your FIS directly instead. For more information, see Compatibility Considerations.

    Description

    example

    showfis(fis) prints a version of the fuzzy inference system, fis, allowing you to see the properties of the system.

    Examples

    collapse all

    Display information for the 'tipper' fuzzy system.

    a = readfis('tipper');
    showfis(a)
    
    1.  Name             tipper
    2.  Type             mamdani
    3.  Inputs/Outputs   [2 1]
    4.  NumInputMFs      [3 2]
    5.  NumOutputMFs     3
    6.  NumRules         3
    7.  AndMethod        min
    8.  OrMethod         max
    9.  ImpMethod        min
    10. AggMethod        max
    11. DefuzzMethod     centroid
    12. InLabels         service
    13.                  food   
    14. OutLabels        tip
    15. InRange          [0 10]
    16.                  [0 10]
    17. OutRange         [0 30]
    18. InMFLabels       poor     
    19.                  good     
    20.                  excellent
    21.                  rancid   
    22.                  delicious
    23. OutMFLabels      cheap   
    24.                  average 
    25.                  generous
    26. InMFTypes        gaussmf
    27.                  gaussmf
    28.                  gaussmf
    29.                  trapmf 
    30.                  trapmf 
    31. OutMFTypes       trimf
    32.                  trimf
    33.                  trimf
    34. InMFParams       [1.5 0 0 0] 
    35.                  [1.5 5 0 0] 
    36.                  [1.5 10 0 0]
    37.                  [0 0 1 3]   
    38.                  [7 9 10 10] 
    39. OutMFParams      [0 5 10 0]  
    40.                  [10 15 20 0]
    41.                  [20 25 30 0]
    42. Rule Antecedent  [1 1]
    43.                  [2 0]
    44.                  [3 2]
    42. Rule Consequent  1
    43.                  2
    44.                  3
    42. Rule Weight      1
    43.                  1
    44.                  1
    42. Rule Connection  2
    43.                  1
    44.                  2
    

    Input Arguments

    collapse all

    Fuzzy system, specified as a FIS object.

    Version History

    Introduced before R2006a

    expand all

    R2019b: 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 function issues a warning starting in R2019b.

    See Also