代码搜索:MathWorks
找到约 4,523 项符合「MathWorks」的源代码
代码结果 4,523
www.eeworm.com/read/353896/10406840
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/353896/10407232
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/424063/10500291
m f14dat.m
% Numerical data for F-14 demo
% Copyright (c) 1990-94 by The MathWorks, Inc.
g = 32.2;
Uo = 689.4000;
Vto = 690.4000;
% Stability derivatives
Mw = -0.00592;
Mq = -0.6571;
Md = -6.8847;
Zd
www.eeworm.com/read/424063/10500430
m f14def.m
% F14DEF
% F-14 demo constant definitions
% Copyright (c) 1990-94 by The MathWorks, Inc.
%
% Define system constants:
Ta = 0.05; Zd = -63.9979;
Swg = 3; Md = -6.8847;
a = 2.5348; Uo = 689
www.eeworm.com/read/424063/10502142
m flxor.m
function z = flxor(x,y)
%FLXOR Exclusive OR computation.
% FLXOR(X,Y) returns bit-wise exclusive OR computation
% between the two integers X and Y.
%
% See also: GFPLUS.
%
www.eeworm.com/read/424063/10502866
m primes.m
function p = primes(n)
%PRIMES Generates prime numbers.
% P = PRIMES(N) produces a row vector in P, which contains the prime
% numbers less than or equal to N.
%
% See also: ISP
www.eeworm.com/read/273093/10927409
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/273093/10927619
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/465911/7048789
m rb_rr.m
function rb=rb_rr(rb,X)
% Copyright (c) MathWorks Inc. 1998-2001. All rights reserved.
global bt_nil rb_black rb_red
Y=X.left;
X.left=Y.right;
if Y.right~=bt_nil
Y.right.parent=X;
end
www.eeworm.com/read/465911/7048791
m dl_trav.m
function dl_trav(dl,func,varargin)
% DL_TRAV
%
% DL_TRAV(head,func,...) traverses the doubly linked list dl,
% while calling the supplied func on every node data, together
% with any optional