代码搜索:MATLAB

找到约 10,000 项符合「MATLAB」的源代码

代码结果 10,000
www.eeworm.com/read/448905/7522804

m basics.m

% Appendix F: MATLAB Basics, Section F.2, p. 818-823. % % The MATLAB input/output described in Section F.2, including % Figures F.1 - F.11 are shown here. After each subtopic, a % pause is
www.eeworm.com/read/448535/7531269

listoffigures

List of figures, captions, and files. NOTES: 1) ALL figure files go in the 'pictures' subdirectory 2) files ending in .fig were created using xfig using the transdev package ------------------
www.eeworm.com/read/447020/7560201

m mexcdf.m

function [varargout] = mexcdf(varargin) % mexcdf -- Driver for Matlab-5/NetCDF C-Language interface. % mexcdf('action', ...) performs the specified NetCDF action. % When writing or reading a N
www.eeworm.com/read/447020/7560203

m ncmemory.m

function theResult = ncmemory(theNetCDF) % ncmemory -- Estimate Matlab memory for NetCDF file. % ncmemory(theNetCDF) estimates the amount of Matlab % memory that would be required to load all
www.eeworm.com/read/447020/7560269

m ncextract.m

function theResult = ncextract(theNCObject, theOutputName) % ncextract -- GUI for NetCDF data extraction. % ncextract(theNCObject, 'theOutputName') presents a dialog % for guiding the extracti
www.eeworm.com/read/447020/7560345

m ncsetstr.m

function theResult = ncsetstr(x) % ncsetstr -- SETSTR for NetCDF character data. % ncsetstr(x) converts values x to unsigned-characters % in the range 0:255, for use by Matlab. Beginning %
www.eeworm.com/read/445830/7589531

m ip_04_04.m

% MATLAB script for Illustrative Problem 4.4. 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/445823/7589628

m ip_01_01.m

% MATLAB script for Illustrative Problem 1, Chapter 1. n=[-20:1:20]; x=abs(sinc(n/2)); stem(n,x);
www.eeworm.com/read/445823/7589636

asv ip_01_01.asv

% MATLAB script for Illustrative Problem 1, Chapter 1. %|xn|和角度xn与n的关系曲线就是x(t)的离散频谱 n=[-20:1:20]; x=abs(sinc(n/2)); stem(n,x);
www.eeworm.com/read/444759/7607496

m 7-17.m

%例程7-17 双极性归零码 %双极性归零码的MATLAB程序实现如下: function y=drz(x) %x为二进制序列,y为编码输出 grid=100; t=0:1/grid:length(x); %时间序列 for i=1:length(x)