代码搜索:MATLAB
找到约 10,000 项符合「MATLAB」的源代码
代码结果 10,000
www.eeworm.com/read/298099/7974395
m ex0101.m
%MATLAB命令窗口的字符和数值的不同颜色显示
a=12.5
b='Hello'
if a>0 c=5 ,end
www.eeworm.com/read/197258/8008962
txt readme.txt
This directory contains the M-files described in the text
"Fundamentals of Statistical Signal Processing: Detection
Theory", by Steven Kay, Prentice Hall, 1998. The files are:
dp.m
montecarlo.m
www.eeworm.com/read/398029/8009535
txt install.txt
Installation instructions
-------------------------
In order to install this distribution of Rice Wavelet Tools version 2.4
released -
1. Properly set up your system to create MEX-files
www.eeworm.com/read/196830/8055615
txt readme.txt
DIGITAL SIGNAL PROCESSING USING MATLAB
--------------------------------------
By Proakis and Ingle, 1995
MS-DOS Diskette Contents
------ -------- --------
The diskette contains a
www.eeworm.com/read/196814/8058897
m randn.m
%R=randn(m,n) 生成标准正态分布的m行n列随机矩阵
%RANDN Normally distributed random numbers.
% RANDN(N) is an N-by-N matrix with random entries, chosen from
% a normal distribution with mean zero and variance
www.eeworm.com/read/196559/8075721
m delta.m
function delta=delta(k)
%MATLAB PROGRAN DELTA.m
%冲激函数
if k==0
delta=1;
else
delta=0;
end
www.eeworm.com/read/196069/8116457
txt readme.txt
DIGITAL SIGNAL PROCESSING USING MATLAB
--------------------------------------
By Proakis and Ingle, 1995
MS-DOS Diskette Contents
------ -------- --------
The diskette contains a
www.eeworm.com/read/145494/12718087
txt readme.txt
Introduction to the Companion MATLAB Codes
For use with the book "Feedback systems analysis and design with
MATLAB", by Professor Dingyu Xue, Tsinghua University Press 2000
(Chinese ve
www.eeworm.com/read/145494/12718588
txt readme.txt
Introduction to the Companion MATLAB Codes
For use with the book "Feedback systems analysis and design with
MATLAB", by Professor Dingyu Xue, Tsinghua University Press 2000
(Chinese ve
www.eeworm.com/read/332538/12749142
m sound_acquisition.m
%% Data Acquisition and Analysis using MATLAB
% MATLAB supports data acquisition using the Data Acquisition Toolbox.
% This code example shows you how to easily acquire and analyze data in
% MATLAB.