代码搜索:Mathworks
找到约 4,523 项符合「Mathworks」的源代码
代码结果 4,523
www.eeworm.com/read/151704/12181268
m display.m
function dummy = display(bb)
%DISPLAY Display a Code Composer Studio(tm) IDE object.
% DISPLAY(CC) displays information about the CC object.
% Copyright 2002 The MathWorks, Inc.
% $Revision
www.eeworm.com/read/151556/12201357
m readme.m
NUMERICAL METHODS: MATLAB Programs
(c) 1999 by John H. Mathews
and Kurtis D. Fink
To Accompany the textbook
NUMERICAL METHODS Using MATLAB
Third Edition, (c) 1999
by John H. Mathews and K
www.eeworm.com/read/151555/12201489
m bizcard.m
function bizcard
% BIZCARD Future version of The MathWorks business card.
% Click anywhere on the card.
clf reset
shg
set(gcf,'name','The MathWorks Business Card', ...
'menu','none','num
www.eeworm.com/read/339575/12224556
m isscalar.m
function ecode = isscalar(Vec)
% ISSCALAR returns 1 for scalar inputs.
% Copyright 1996-2001 The MathWorks, Inc.
% $Revision: 1.3 $ $Date: 2001/04/05 04:47:25 $
if(ndims(Vec) == 2)
if(
www.eeworm.com/read/339575/12224559
m isvector.m
function ecode = isvector(Vec)
% ISVECTOR returns 1 for vector inputs.
% Copyright 1996-2001 The MathWorks, Inc.
% $Revision: 1.3 $ $Date: 2001/04/05 04:47:26 $
if(ndims(Vec) == 2)
if(
www.eeworm.com/read/339239/12248369
m exm110423_1.m
cd c:\ WINDOWS\Applic~1\MathWorks\MATLAB\R12 %将此目录设为当前工作目录
%打印文本文件mccstartup的内容
type C:\WINDOWS\Applic~1\MathWorks\MATLAB\R12\mccstartup
!copy mccstartup h:\mywork\temp %将mccstartup转移到临时目录下
!
www.eeworm.com/read/150238/12303417
m ishandl.m
function I = ishandle(h)
%ISHANDLE True for graphics handles.
% ISHANDLE(H) returns 1's where the elements of H are valid graphics
% handles and 0's where they are not.
% L. Ljung
www.eeworm.com/read/125529/14488849
m ishandl.m
function I = ishandle(h)
%ISHANDLE True for graphics handles.
% ISHANDLE(H) returns 1's where the elements of H are valid graphics
% handles and 0's where they are not.
% L. Ljung
www.eeworm.com/read/123143/14645475
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/123143/14645577
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