1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
## Copyright (C) 2011-2025 L. Markowsky <lmarkowsky@gmail.com>
##
## This file is part of the fuzzy-logic-toolkit.
##
## The fuzzy-logic-toolkit is free software; you can redistribute it
## and/or modify it under the terms of the GNU General Public License
## as published by the Free Software Foundation; either version 3 of
## the License, or (at your option) any later version.
##
## The fuzzy-logic-toolkit is distributed in the hope that it will be
## useful, but WITHOUT ANY WARRANTY; without even the implied warranty
## of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with the fuzzy-logic-toolkit; see the file COPYING. If not,
## see <http://www.gnu.org/licenses/>.
## -*- texinfo -*-
## @deftypefn {Function File} {@var{fis} =} addvar (@var{fis}, @var{in_or_out}, @var{var_name}, @var{var_range})
##
## Add an input or output variable to an existing FIS
## structure and return the updated FIS.
##
## The types/values of the arguments are expected to be:
##
## @multitable @columnfractions .35 .40
## @headitem Argument @tab Expected Type or Value
## @item @var{fis}
## @tab an FIS structure
## @item @var{in_or_out}
## @tab either 'input' or 'output' (case-insensitive)
## @item @var{var_name}
## @tab a string
## @item @var{var_range}
## @tab a vector [x1 x2] of two real numbers
## @end multitable
## @sp 1
## The vector components x1 and x2, which must also satisfy x1 <= x2,
## specify the lower and upper bounds of the variable's domain.
##
## To run the demonstration code, type "@t{demo addvar}" (without the quotation
## marks) at the Octave prompt.
##
## @end deftypefn
## Author: L. Markowsky
## Keywords: fuzzy-logic-toolkit fuzzy variable
## Directory: fuzzy-logic-toolkit/inst/
## Filename: addvar.m
## Last-Modified: 13 Jun 2024
function fis = addvar (fis, in_or_out, var_name, var_range)
## If the caller did not supply 4 argument values with the correct
## types, print an error message and halt.
if (nargin != 4)
error ("addvar requires 4 arguments\n");
elseif (!is_fis (fis))
error ("addvar's first argument must be an FIS structure\n");
elseif (!(is_string (in_or_out) && ...
ismember (tolower (in_or_out), {'input', 'output'})))
error ("addvar's second argument must be 'input' or 'output'\n");
elseif (!is_string (var_name))
error ("addvar's third argument must be a string\n");
elseif (!are_bounds (var_range))
error ("addvar's fourth argument must specify variable bounds\n");
endif
## Create a new variable struct and update the FIS input or output
## variable list.
new_variable = struct ('name', var_name, 'range', var_range, ...
'mf', []);
if (strcmp (tolower (in_or_out), 'input'))
if (length (fis.input) == 0)
fis.input = new_variable;
else
fis.input = [fis.input, new_variable];
endif
else
if (length (fis.output) == 0)
fis.output = new_variable;
else
fis.output = [fis.output, new_variable];
endif
endif
endfunction
%!demo
%! a = newfis ('Heart-Disease-Risk', 'sugeno', ...
%! 'min', 'max', 'min', 'max', 'wtaver');
%! a = addvar (a, 'input', 'LDL-Level', [0 300]);
%! getfis (a, 'input', 1);
%!shared fis
%! fis = readfis ('mamdani_tip_calculator.fis');
%!test
%! fis = addvar(fis, 'input', 'Dining-Room', [1 10]);
%! assert(fis.input(3).name == 'Dining-Room');
## Test input validation
%!error <addvar requires 4 arguments>
%! addvar()
%!error <addvar requires 4 arguments>
%! addvar(1)
%!error <addvar requires 4 arguments>
%! addvar(1, 2)
%!error <addvar requires 4 arguments>
%! addvar(1, 2, 3)
%!error <addvar: function called with too many inputs>
%! addvar(1, 2, 3, 4, 5)
%!error <addvar's first argument must be an FIS structure>
%! addvar(1, 2, 3, 4)
%!error <addvar's second argument must be 'input' or 'output'>
%! addvar(fis, 2, 3, 4)
%!error <addvar's third argument must be a string>
%! addvar(fis, 'input', 3, 4)
%!error <addvar's fourth argument must specify variable bounds>
%! addvar(fis, 'input', 'string', 4)
|