代码搜索:Mathworks
找到约 4,523 项符合「Mathworks」的源代码
代码结果 4,523
www.eeworm.com/read/123143/14645579
m times.m
% Copyright (c) 1994-98 by The MathWorks, Inc.
% $Revision: 1.2 $
function out=mtimes(mf1,mf2)
out=fuzarith(mf1.x,mf1.y,mf2.y,'prod');
plot(mf1.x,[mf1.y mf2.y mf3.y])
www.eeworm.com/read/123143/14645581
m minus.m
% Copyright (c) 1994-98 by The MathWorks, Inc.
% $Revision: 1.2 $
function out=minus(mf1,mf2)
mf3.x=mf1.x;
mf3.y=fuzarith(mf1.x,mf1.y,mf2.y,'sub');
plot(mf1.x,[mf1.y mf2.y mf3.y]);
out=mf(mf3.x,
www.eeworm.com/read/123143/14645583
m display.m
function display(mf)
% Display function for membership function objects
% Copyright (c) 1994-98 by The MathWorks, Inc.
% $Revision: 1.2 $
plot(mf.x,mf.y)
www.eeworm.com/read/123143/14645586
m mrdivide.m
% Copyright (c) 1994-98 by The MathWorks, Inc.
% $Revision: 1.2 $
function out=mrdivide(mf1,mf2)
mf3.x=mf1.x;
mf3.y=fuzarith(mf1.x,mf1.y,mf2.y,'div');
plot(mf1.x,[mf1.y mf2.y mf3.y]);
out=mf(mf3
www.eeworm.com/read/123143/14645591
m uminus.m
% Copyright (c) 1994-98 by The MathWorks, Inc.
% $Revision: 1.2 $
function out=uminus(mf1)
mf2.x=mf1.x;
mf2.y=1-mf1.y;
plot(mf1.x,[mf1.y mf2.y]);
out=mf(mf2.x,mf2.y);
www.eeworm.com/read/123143/14645713
m custmf.m
function y = custmf(x,params)
%CUSTMF Customized membership function for CUSTTIP.FIS.
% This function is really just TRAPMF in disguise.
% Copyright (c) 1994-98 by The MathWorks, Inc.
%
www.eeworm.com/read/123143/14645720
m custdfuz.m
function y=custdfuz(x,mf)
%CUSTDFUZ Customized defuzzification function for CUSTTIP.FIS
% Copyright (c) 1994-98 by The MathWorks, Inc.
% $Revision: 1.3 $
y=defuzz(x,mf,'centroid')/2;
www.eeworm.com/read/123143/14645751
m custagg.m
function y=custagg(x)
%CUSTAGG Customized aggregation function for CUSTTIP
%
% Copyright (c) 1994-98 by The MathWorks, Inc.
% $Revision: 1.3 $
y=(sum(x)/2).^0.5;
www.eeworm.com/read/123143/14645778
m custor.m
function y=custor(x)
%CUSTOR Customized OR functions for CUSTTIP.FIS.
% This function is really just PROBOR in disguise.
% Copyright (c) 1994-98 by The MathWorks, Inc.
% $Revision: 1.3 $