代码搜索:Matlab仿真
找到约 10,000 项符合「Matlab仿真」的源代码
代码结果 10,000
www.eeworm.com/read/331439/12828765
m mtimes.m
function q = mtimes(l, r)
% * Matrix multiply.
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/331439/12828821
m sum.m
function t = sum(a, dim)
% SUM Sum of elements.
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/331439/12828842
m exp.m
function Y = exp(X)
% EXP Exponential
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/331439/12828899
m uminus.m
function u = uminus(a)
% - Unary minus.
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/331439/12828973
m sign.m
function Y = sign(X)
% SIGN Signum function
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/244945/12829602
m rand.m
%R=rand(m,n) 生成(0,1)上均匀分布的m行n列随机矩阵
%RAND Uniformly distributed random numbers.
% RAND(N) is an N-by-N matrix with random entries, chosen from
% a uniform distribution on the interval (0.0,1.0
www.eeworm.com/read/244937/12830785
m ip_01_01.m
% MATLAB script for Illustrative Problem 1, Chapter 1.
clear
n=[-20:1:20];
x=abs(sinc(n/2));
stem(n,x);
www.eeworm.com/read/244937/12830972
m ip_04_04.m
% MATLAB script for Illustrative Problem 4.4.
clear
echo on ;
a=[-10,-5,-4,-2,0,1,3,5,10];
for i=1:length(a)-1
y(i)=centroid('normal',a(i),a(i+1),0.001,0,1);
echo off ;
end
www.eeworm.com/read/330869/12863237
txt readme.txt
主程序在Symplectic/fracft
要调用程序在Utils里找。
在matlab里file-〉set path里设置好路径即可。
www.eeworm.com/read/143419/12878048
c sos.c
/*
* sos.c - Calculate the sum of the squares of the elements of a vector.
*
* Mastering MATLAB Engine Example
*
*/
/* B.R. Littlefield, University of Maine, Orono, ME 04469
* 7/17/00
*