No BSD License  

Highlights from
Fuzzy TYPE - 2

from Fuzzy TYPE - 2 by Farhat Masood
Various FuzzyTYPE-2 Operations

leftpoint(c1,LL,UU);
%% leftpoint.m

%% Computes c1 the left point of the consequent fuzzy set.


function [l_out,I1u,I1l,wl]= leftpoint(c1,LL,UU);

N=length(c1);
[b2,I2]=sort(c1);
L=[];
U=[];

for i=1:N
l=LL(I2(i));
r=UU(I2(i));
L=[L,l];
U=[U,r];
end

l_out=b2*L'/sum(L);

s=b2*L';
s1=sum(L);

I1u=[];
I1l=[];
wl=[];

for i=1:N
s=s-b2(i)*L(i)+b2(i)*U(i);
s1=s1-L(i)+U(i);
 if s/s1<l_out
   l_out=s/s1;
% wl=[wl,U(i)];
I1u=[I1u,I2(i)];
else
I1l=[I1l,I2(i)];
% wl=[wl,L(i)];
end
end

L=length(I1u);
for i=1:L
wl(I1u(i))=UU(I1u(i));
end

L=length(I1l);
for i=1:L
wl(I1l(i))=LL(I1l(i));
end

Contact us