代码搜索:Mathworks
找到约 4,523 项符合「Mathworks」的源代码
代码结果 4,523
www.eeworm.com/read/147096/12584273
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/147096/12584352
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/147096/12585314
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/147096/12585788
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/247527/12652817
m rastriginsfcn.m
function scores = rastriginsfcn(pop)
%RASTRIGINSFCN Compute the "Rastrigin" function.
% Copyright 2004 The MathWorks, Inc.
% $Revision: 1.3 $ $Date: 2004/01/16 16:52:51 $
% pop = ma
www.eeworm.com/read/205035/15329028
m debye1.m
function D1 = debye1(x)
%DEBYE1 First order Debye function.
% Y = DEBYE1(X) returns the first order Debye function, evaluated at X.
% X is a scalar. For positive X, this is defined as
%
%
www.eeworm.com/read/107177/15612101
m dist2.m
function y = dist2(w,p)
%DIST Distances between vectors.
%
% Adapted from dist.m by Mathworks
[s,r] = size(w);
[r2,q] = size(p);
if (r ~= r2), error('Matrix sizes do not match.'),end
y = zeros(s,q
www.eeworm.com/read/101557/15826617
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/101557/15826638
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/101557/15827042
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.
%