www.gusucode.com > 锅炉水位系统模糊控制的实例matlab源码程序 > code/08000215/synthesize.m

    function t=synthesize(r,s,m,n,l)
for i=1:m
    for j=1:l
        test(1,:)=r(i,:);
        test(2,:)=(s(:,j))';
        for k=1:n
            test1(1,k)=min(test(:,k));
        end
        t(i,j)=max(test1);
    end
end