代码搜索:Mathworks
找到约 4,523 项符合「Mathworks」的源代码
代码结果 4,523
www.eeworm.com/read/465911/7048792
m mt_asgn2.m
function A=mt_asgn2(A,S,B)
% Copyright (c) MathWorks Inc. 1998-2001. All rights reserved.
l=length(S);
b='A';
c='=B;';
for i=1:l
Si=S(i);
switch Si.type
case '()'
b=sprint
www.eeworm.com/read/465911/7048794
m sl_free.m
function head=sl_free(sl)
% SL_FREE
%
% head=SL_FREE(sl) frees the memory allocated to the singly linked
% list head.
% Copyright (c) MathWorks Inc. 1998-2001. All rights reserved.
if narg
www.eeworm.com/read/465911/7048799
m sl_appnd.m
function sl=sl_app(sl,data)
% SL_APP
%
% sl=SL_APP(sl,data) appends data to the list
%
% There is no limitation of data type, and different nodes can
% contain different data types.
% Copy
www.eeworm.com/read/465911/7048808
m sl_new.m
function sl=sl_new
% SL_NEW
%
% sl=SL_NEW returns an empty singly linked list.
% Singly linked list has a dummy node as its head.
% Copyright (c) MathWorks Inc. 1998-2001. All rights reserved
www.eeworm.com/read/465911/7048809
m rb_demo.m
function h=rb_demo
% RB_DEMO
%
% Demonstrate how a Red-Black binary tree is being used to produce a sorted
% list of words. A graph of the resulting tree is shown.
% Copyright (c) MathWorks I