⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fuz.m

📁 The neuro-fuzzy software for identification and data analysis has been implemented in the MATLAB lan
💻 M
字号:
function [out_hat]=fuz(comp,training_set,inputs)%FUZ%%  [out_hat]=fuz(comp,training_set,inputs)%%	out_hat[no_data,1]%%	comp[1,1]%	training_set[no_training_data,no_var+1]%	inputs[no_data,no_var]%%	For a given input, Fuzzy returns the output %	of a (comp)_rule_Fuzzy_Model trained with %	the given training set.%%	The following global variable are required:                     %		memb_fun:	'gaussian'/'triangular'                % 		arch:		'weigthed'/'comb'                      %		format_out:	'linear'/'constant'                       %		init: 		'k_mean'/'hfc'%______________________________________________________10 April 1996____[centers,bases,par,bias]=fuz_id(comp,training_set);out_hat=fuz_mod(inputs,centers,bases,par,bias);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -