📄 calcmub.m
字号:
function [mub,it] = calcMub(Xdat,seuil,itmax,epsilon);
% function [mub,it] = calcMub(Xdat);
%
% Compute upper bound value of fuzzy parameter
%
% Xdat = data set of size (M,N)
%
% Caution :
% This funtion can take a lot of time when data set
% has high dimensions. In such case we recommend to
% compute the vector of distances using "C" or other
% compiled langage and then use the function
% "mub = searchMub(...)"
%
% Write by : DD
% date : 2001/06/24
[M,N] = size(Xdat);
vD = calcDataDist(Xdat); %% can be computationally expensive
% User can modify the following three parameters
%seuil = 0.03; itmax = 500; epsilon = 0.001;
cv_mub = seuil*M;
[mub,it] = searchMub(vD,cv_mub,epsilon,itmax);
return; %% end of function calcMub.m
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -