/** * This method asign a fuzzy mothed to another one * * @param m The fuzzy model */ public void set(FuzzyModel m) { R = m.R.clone(); defuzType = m.defuzType; }
/** * Construxtor. Generate a new rule base besed in another fuzzy model * * @param m The fuzzy model */ public FuzzyModel(FuzzyModel m) { R = m.R.clone(); defuzType = m.defuzType; }