代码搜索:MATLAB
找到约 10,000 项符合「MATLAB」的源代码
代码结果 10,000
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
*
www.eeworm.com/read/143419/12878053
txt enginedemo.txt
mex -f G:\MATLAB6p5\bin\win32\mexopts\lccengmatopts.bat engdemo.c
www.eeworm.com/read/244123/12885881
dat bookinfo.dat
[General Information]
书名=MATLAB仿真应用详解
作者=范影乐 杨胜天等编著
页数=345
SS号=10459057
出版日期=2001年7月第1版
www.eeworm.com/read/244076/12892357
m fil.m
function [out]=fil(in,f);
%
% Filters the data using a first order filter
%
% [out]=fil(in,f);
%
% f is a vector containing the filter constants
%
% Updated to use MATLAB's built in filter rou