コード例 #1
0
ファイル: FuzzyModel.java プロジェクト: micyee/granada
 /**
  * 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;
 }
コード例 #2
0
ファイル: FuzzyModel.java プロジェクト: micyee/granada
 /**
  * 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;
 }