代码搜索:Mathworks
找到约 4,523 项符合「Mathworks」的源代码
代码结果 4,523
www.eeworm.com/read/188324/8550122
m stval.m
% STVAL st-宆偺娭悢偺昡壙
%
% Z = STVAL(ST,X) 偼丄st-宆偑 ST 撪偵偁傞娭悢偺 X 偱偺抣傪弌椡偟傑偡丅
% Z 偼丄ST 偵偁傞娭悢偑1曄悢偱d梫慺偺儀僋僩儖抣偱丄傑偨 size(X) 偑 [m,n]
% 偺応崌丄戝偒偝 [d*m,n] 偺峴楍偱偡丅
% ST 偵偁傞娭悢偑 m>1 偺m曄悢偱d梫慺偺儀僋僩儖抣偺応崌丄Z 偺戝偒偝偼埲壓
%
www.eeworm.com/read/188324/8550126
m fnchg.m
% FNCHG 宆偺峔惉梫慺偺曄峏
%
% FNCHG(FN,PART,VALUE) 偼丄FN 偺巜掕偝傟偨 PART 傪梌偊傜傟偨 VALUE 偵
% 曄峏偟傑偡丅
% PART 偼丄埲壓偺(愭摢偺僉儍儔僋僞)偺偄偢傟偐偵側傝傑偡丅
% 'dimension' 娭悢偺僞乕僎僢僩偺師尦
% 'interval' 娭悢偺婎杮嬫娫
%
% 暥帤
www.eeworm.com/read/188324/8550650
m spldems.m
function spldems
%SPLDEMS Spline Toolbox demos.
% Copyright 1987-2005 C. de Boor and The MathWorks, Inc.
% $Revision: 5.16.4.1 $ $Date: 2005/06/21 19:46:12 $
demo toolbox spline
www.eeworm.com/read/384980/8826058
h getdata.h
/*
* MAT-file diagnose program
*
* Calling syntax:
*
* matdgns
*
* It diagnoses the MAT-file named .
*
* This program demonstrates the use of the followi
www.eeworm.com/read/184067/9123628
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/184067/9123822
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/168045/9941041
readme
--------------------
Notes on routines
--------------------
These M-files are User Contributed Routines which are being redistributed
by The MathWorks, upon request, on an "as is" basis. A User Cont
www.eeworm.com/read/166306/10024432
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/166306/10024636
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/165322/10067439
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
%
%