代码搜索:MathWorks
找到约 4,523 项符合「MathWorks」的源代码
代码结果 4,523
www.eeworm.com/read/465911/7048828
m malloc.m
function h=malloc
% Copyright (c) MathWorks Inc. 1998-2001. All rights reserved.
h=pointer;
www.eeworm.com/read/465911/7048839
m rb_rl.m
function rb=rb_lr(rb,X)
% Copyright (c) MathWorks Inc. 1998-2001. All rights reserved.
global bt_nil rb_black rb_red
Y=X.right;
X.right=Y.left;
if Y.left~=bt_nil
Y.left.parent=X;
end
www.eeworm.com/read/465911/7048857
m sl_insrt.m
function sl=sl_insrt(sl,data)
% SL_INSRT
%
% sl=SL_INSRT(sl,data) insert data as the first node of the list sl.
%
% There is no limitation of data type, and different nodes can
% contain diff
www.eeworm.com/read/465911/7048858
m sl_count.m
function cnt=sl_count(sl)
% SL_COUNT
%
% cnt=SL_COUNT(sl) returns the number of items in the singly linked list sl.
% Copyright (c) MathWorks Inc. 1998-2001. All rights reserved.
if nargin
www.eeworm.com/read/172061/7074758
m inv.m
%求逆矩阵
%用法 B=inv(A) 其中A为数值或符号方阵,B返回A的逆
%例如
% inv([1 2;3 4]) %数值
% syms a b c d;inv([[a,b;c,d]) %符号
%
%INV Matrix inverse.
% INV(X) is the inverse of the square
www.eeworm.com/read/172061/7074857
m randperm.m
function p = randperm(n);
%P=randperm(n) 生成1,2…,n的一个随机排列
%
%RANDPERM Random permutation.
% RANDPERM(n) is a random permutation of the integers from 1 to n.
% For example, RANDPERM(6) might be
www.eeworm.com/read/445655/7592265
txt readmechinese.txt
聚类有效性评价工具箱与估计聚类个数(版本2.0) 帮助文件
Cluster Validation Toolbox (CVT-NC) (Version 2.0)
欢迎使用和评述此工具箱,您的意见是对我们工作的支持。E-mail: sunice9@yahoo.com
下载地址: www.mathworks.com/matlabcentral/fileexchange/loadFil
www.eeworm.com/read/434664/7850718
m rastriginsfcn.m
function scores = Rastriginsfcn(pop)
%RASTRIGINSFCN Compute the "Rastrigin" function.
% Copyright 2003-2004 The MathWorks, Inc.
% $Revision: 1.3.4.1 $ $Date: 2004/08/20 19:50:22 $
%
www.eeworm.com/read/197958/7960529
m inv.m
%求逆矩阵
%用法 B=inv(A) 其中A为数值或符号方阵,B返回A的逆
%例如
% inv([1 2;3 4]) %数值
% syms a b c d;inv([[a,b;c,d]) %符号
%
%INV Matrix inverse.
% INV(X) is the inverse of the square
www.eeworm.com/read/197958/7960871
m randperm.m
function p = randperm(n);
%P=randperm(n) 生成1,2…,n的一个随机排列
%
%RANDPERM Random permutation.
% RANDPERM(n) is a random permutation of the integers from 1 to n.
% For example, RANDPERM(6) might be