代码搜索:Mathworks
找到约 4,523 项符合「Mathworks」的源代码
代码结果 4,523
www.eeworm.com/read/196814/8058588
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/196814/8058855
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/244945/12829439
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/244945/12829647
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/329331/12960347
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/329331/12960642
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/318488/13477496
m gray_inv.m
function g = gray_inv(m)
%GRAY Linear gray-scale color map.
% GRAY(M) returns an M-by-3 matrix containing a gray-scale colormap.
% GRAY, by itself, is the same length as the current colormap.
www.eeworm.com/read/315461/13541940
c s_tpl.c
/* *****************************************************/
/* s_tpl */
/* This template illustrates the structure of a */
/* C S-Function file
www.eeworm.com/read/313956/13578186
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/313956/13578355
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