代码搜索:Mathworks

找到约 4,523 项符合「Mathworks」的源代码

代码结果 4,523
www.eeworm.com/read/147096/12586077

m helptest.m

% Copyright (c) 1996 by The MathWorks, Inc. % $Revision: 1.1 $ $Date: 1996/04/01 19:39:51 $ help ademod help ademodce help amod help amodce help apkconst help bchcore help
www.eeworm.com/read/147096/12586417

m tsttrand.m

% Copyright (c) 1996 by The MathWorks, Inc. % $Revision: 1.1 $ $Date: 1996/04/01 19:50:27 $ T=[0:.1:100];T=T(:);U=rand(length(T),1)*2; num=10;den=[1,6,10]; [num1, den1]=c2dm(num,den
www.eeworm.com/read/334076/12642782

m anfiscb.m

% Copyright (c) 1994-98 by The MathWorks, Inc. % $Revision: 1.2 $ function anfiscb() StopHndl=findobj('Tag', 'StopBtn'); set(StopHndl, 'String', 'Stop');
www.eeworm.com/read/334076/12642853

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/334076/12642855

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/334076/12642859

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/334076/12642861

m plus.m

% Copyright (c) 1994-98 by The MathWorks, Inc. % $Revision: 1.2 $ function out=plus(mf1,mf2) mf3.x=mf1.x; mf3.y=fuzarith(mf1.x,mf1.y,mf2.y,'sum'); plot(mf1.x,[mf1.y mf2.y mf3.y]); out=mf(mf3.x,m
www.eeworm.com/read/334076/12642863

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/334076/12642868

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/334076/12643174

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. %